You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to use the library but getting error
Not able to identify what can be the issue
node: 12.18.0
npm: 6.14
OS: Mac
import{NavigationContainer}from'@react-navigation/native';import{createStackNavigator}from'@react-navigation/stack';importReactfrom'react';importDashboardfrom'./components/Dashboard/Dashboard';importLoginfrom'./components/Login/Login';importSignupfrom'./components/Signup/Signup';importSubServicefrom'./components/SubService/SubService';import{SCREENS}from'./screens/screens';import{COLOR,ThemeContext,getTheme}from'react-native-material-ui';// you can set your style right here, it'll be propagated to applicationconstuiTheme={palette: {primaryColor: COLOR.green500,},toolbar: {container: {height: 50,},},};constStack=createStackNavigator();exportdefaultfunctionApp(){return(<ThemeContext.Providervalue={getTheme(uiTheme)}><NavigationContainer><Stack.Navigator><Stack.Screenname={SCREENS.home}component={Login}/><Stack.Screenname={SCREENS.signup}component={Signup}/><Stack.Screenname={SCREENS.dashboard}component={Dashboard}/><Stack.Screenname={SCREENS.subService}component={SubService}/></Stack.Navigator></NavigationContainer></ThemeContext.Provider>);}
The text was updated successfully, but these errors were encountered:
Hey,
I'm trying to use the library but getting error
Not able to identify what can be the issue
node: 12.18.0
npm: 6.14
OS: Mac
The text was updated successfully, but these errors were encountered: