[IMPROVE] Set native theme when launching the share extension (#4430)

This commit is contained in:
Gleidson Daniel Silva 2022-08-16 17:20:28 -03:00 committed by GitHub
parent c6e31df3e4
commit a607980840
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 1 deletions

View File

@ -4,7 +4,14 @@ import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';
import { Provider } from 'react-redux';
import { getTheme, initialTheme, newThemeState, subscribeTheme, unsubscribeTheme } from './lib/methods/helpers/theme';
import {
getTheme,
initialTheme,
newThemeState,
setNativeTheme,
subscribeTheme,
unsubscribeTheme
} from './lib/methods/helpers/theme';
import UserPreferences from './lib/methods/userPreferences';
import Navigation from './lib/navigation/shareNavigation';
import store from './lib/store';
@ -106,6 +113,7 @@ class Root extends React.Component<{}, IState> {
fontScale
};
this.init();
setNativeTheme(theme);
}
componentDidMount() {