Skip to main content

Hello,

 

I searched through the docs and can’t find if there’s a setting or prop to set a paywall to dark mode or light mode? Like how the web editor allows?

 

(Or to overwrite the phone settings?)

I'm also interested in manually changing the dark/light setting based in the user choice in the app and not the one of the OS. How to do that ?


I am also interested in this topic.


Use the following to change the applications theme to light or dark mode:


import { Appearance} from 'react-native';

 Appearance.setColorScheme(isDarkMode ? 'dark' : 'light');


Reply