iOS 13.0 dark mode support
See original GitHub issueSystem: OS: macOS 10.14.6 CPU: (12) x64 Intel® Core™ i7-8750H CPU @ 2.20GHz Memory: 6.44 GB / 16.00 GB Shell: 5.3 - /bin/zsh Binaries: Node: 12.6.0 - /usr/local/bin/node Yarn: 1.17.3 - /usr/local/bin/yarn npm: 6.9.0 - /usr/local/bin/npm Watchman: 4.9.0 - /usr/local/bin/watchman SDKs: iOS SDK: Platforms: iOS 13.0, DriverKit 19.0, macOS 10.15, tvOS 13.0, watchOS 6.0 Android SDK: API Levels: 23, 25, 26, 28, 29 Build Tools: 27.0.3, 28.0.3, 29.0.1 System Images: android-29 | Google APIs Intel x86 Atom IDEs: Android Studio: 3.4 AI-183.6156.11.34.5692245 Xcode: 11.0/11A420a - /usr/bin/xcodebuild npmPackages: react: 16.8.6 => 16.8.6 react-native: 0.60.0 => 0.60.0 npmGlobalPackages: react-native-cli: 2.0.1
iOS 13.0
- Android:
- iOS:
- react-native-modal-datetime-picker:
- react-native:
- react:
Issue Analytics
- State:
- Created 4 years ago
- Reactions:2
- Comments:16 (6 by maintainers)
Top Results From Across the Web
iOS 13: Dark Mode Support. Apple - Vikas Kore
Apple says: Use Dark Mode on your iPhone, iPad, or iPod touch. Turn on Dark Mode for a great viewing experience especially in...
Read more >How to Turn on Dark Mode in iOS 13 | Digital Trends
It's easy to get started with iOS 13's Dark Mode. Just head to your Settings app, then touch Display & Brightness. Apple has...
Read more >Implementing Dark Mode in iOS 13
After years of waiting and anticipation, iOS 13 finally supports native Dark Mode! Users can choose to enable a system wide dark appearance...
Read more >Supporting Dark Mode in Your Interface - Apple Developer
Supporting Dark Mode in Your Interface. Update colors, images, and behaviors so that your app adapts automatically when Dark Mode is active.
Read more >Dark Mode on iOS 13 - NSHipster
In the Attributes inspector, select “Any, Dark” appearance. Colors are frequently expressed in the form (“#RRGGBB”); you can enter colors in ...
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 Free
Top 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
Just a workaround, but I added this to the
Info.plist
to disable dark mode for now:I use appearance fix this
import { Appearance } from ‘react-native-appearance’
const colorScheme = Appearance.getColorScheme() const isDarkModeEnabled = colorScheme === ‘dark’
DateTimePicker add isDarkModeEnabled={isDarkModeEnabled}