instaApp
  • Getting Started
  • Features
  • Installation
  • Internationalization
  • Theming
Powered by GitBook
On this page

Was this helpful?

Theming

PreviousInternationalization

Last updated 5 years ago

Was this helpful?

To enable default theme

Dark

src/scenes/splash/index.js
componentDidMount = async () => {
    await AsyncStorage.setItem("@usertheme","dark"); // dark
    this.props.setTheme("dark"); // dark
  };

Light

src/scenes/splash/index.js
componentDidMount = async () => {
    await AsyncStorage.setItem("@usertheme","light"); // light
    this.props.setTheme("light"); // light
  };