Currently, the default styling of the Modal itself is Light in colour. with iOS 13, there is a new dark mode that turns all native elements darker (Alerts, other modal popups and theming).
If a device is able to detect Dark Mode, we should allow the select modal to be switched to a default "dark" style to fit with other elements that are likely to be present on the screen.
Looks like you could add some manual styling to the modal (which works, other than the Text style)
modalViewMiddle: {
backgroundColor: '#000000',
},
modalViewBottom: {
backgroundColor: '#000000',
color: 'pink', // this does not effect the select text which remains black
}
Note: Dark mode can be pulled using some other modules and is available in Expo also (for v35).
moving to feature request board
any news on this?
not on my priority list, but open to prs
Any news? Any workarounds for now? It is very urgent.
Turns out the color prop is on on items. When you create items {label: "", value: "", color:""}
Turns out the color prop is on on items. When you create items {label: "", value: "", color:""}
You my friend are Amazing. It works as expected.
Thank you!
Most helpful comment
Turns out the color prop is on on items. When you create items {label: "", value: "", color:""}