Theming
To enable default theme
Dark
componentDidMount = async () => {
await AsyncStorage.setItem("@usertheme","dark"); // dark
this.props.setTheme("dark"); // dark
};
Light

Last updated
Was this helpful?
To enable default theme
Dark
componentDidMount = async () => {
await AsyncStorage.setItem("@usertheme","dark"); // dark
this.props.setTheme("dark"); // dark
};
Light

Last updated
Was this helpful?
Was this helpful?
componentDidMount = async () => {
await AsyncStorage.setItem("@usertheme","light"); // light
this.props.setTheme("light"); // light
};