We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is your feature request related to a problem? Yes
I have added a vertical scroll bar to dropdown using this new release . I know the fact that Recycler view has it's limitation.
Is there any other way to add the dropdown vertical bar color? Please help.
The text was updated successfully, but these errors were encountered:
It seems to need a new XML file that containing a customized RecyclerView for fully customizing popup. I will consider to APIs of this issue.
Sorry, something went wrong.
Sorry for the late response. Since version 1.2.1, you can custom the color of the scrollbar by adding the attribute below in your color.xml file:
1.2.1
color.xml
<color name="powerspinner_scrollbar">YOUR_CUSTOM_COLOR</color>
Also, you can custom the style of the scrollbar by adding the style below in your styles.xml file:
styles.xml
<style name="PowerSpinnerStyle"> <item name="android:scrollbarAlwaysDrawVerticalTrack">true</item> <item name="android:scrollbars">vertical</item> <item name="android:fadeScrollbars">true</item> <item name="android:scrollbarThumbVertical">@drawable/powerspinner_scrollbar</item> </style>
Thank you!
No branches or pull requests
Is your feature request related to a problem? Yes
I have added a vertical scroll bar to dropdown using this new release . I know the fact that Recycler view has it's limitation.
Is there any other way to add the dropdown vertical bar color? Please help.
The text was updated successfully, but these errors were encountered: