react-native-dropdown-picker
react-native-dropdown-picker copied to clipboard
Dropdown list styling
I've been searching everywhere on how to style the actual list. As you can see, the border is still default black and the backgroundColor is transparent. How do I change that? Thanks!

I hope this help
<DropDownPicker
...
dropDownContainerStyle={{
backgroundColor: 'white',
borderColor: 'skyblue',
}}
...
/>
- Also, posting a bit of your code may help others breakdown your problem
@milos381 had a similar problem with the seemingly transparent background, just using the demo code from the docs with the BOTTOM direction. Turns out that it's not about colors, but about z-index. See https://github.com/hossein-zare/react-native-dropdown-picker/issues/562#issuecomment-1139908459 for a potential fix. hth :)