Support for iOS Dark Mode
See original GitHub issueCurrently, 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).
Issue Analytics
- State:
- Created 4 years ago
- Reactions:7
- Comments:9 (2 by maintainers)
Top Results From Across the Web
Supporting Dark Mode in Your Interface - Apple Developer
In macOS and iOS, users can choose to adopt a system-wide light or dark appearance. The dark appearance, known as Dark Mode, implements...
Read more >Dark Mode: Adding support to your app in Swift - SwiftLee
Dark Mode was introduced in iOS 13 and announced at WWDC 2019. It adds a darker theme to iOS and allows you to...
Read more >Adapting Your App to Support Dark Mode - RayWenderlich.com
In this tutorial, you'll learn how to add support for Dark Mode in your app, making it look great in low-light environments.
Read more >iOS 13 Dark Mode - Medium
In iOS 13.0 and later, users can choose to adopt a dark appearance called Dark Mode. In Dark Mode, apps and system use...
Read more >Using Microsoft To Do in dark mode
Microsoft To Do supports dark mode on Windows 10, Android, iOS 13, and macOS Mojave 10.14.2 or later. Windows. To turn on dark...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Turns out the color prop is on on items. When you create items {label: “”, value: “”, color:“”}
I just opened a PR to add support for iOS dark mode #463.