Following items are considered while integrating theme base application:
- Add ./core/themeProvider.js file in your project.
- Add below line to integrate theme in App.js file
render() {
return (
<ThemeContextProvider>
<AppContainer />
</ThemeContextProvider>
);
}
- In any component when you want to use theme just need to write:
export default withTheme(<ScreenName>);