Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

objects are not valid as react child #40

Open
yashimaskara opened this issue May 3, 2021 · 0 comments
Open

objects are not valid as react child #40

yashimaskara opened this issue May 3, 2021 · 0 comments

Comments

@yashimaskara
Copy link

const MyAccountfunc= async ({navigation})=>{
let user = await AsyncStorage.getItem('user'); //it is showing error here
alert(user); //my user contains one mail
if(user==null)
{
alert('Login first')
navigation.navigate('Login')

}
else{
alert('done')
navigation.navigate('MyAccount')

}
return null
}

const DrawerNavigation = createDrawerNavigator(

{

  "Home": App,
  "My Account": MyAccountfunc,
  "Order History": OrderHistory,
  "About us": Aboutus,
  "Contact us": Contactus,
  "Logout": LogoutFunc

},
{
initialRouteName: "Home",
contentOptions: {
activeTintColor: "red"
}
}
);

export default createAppContainer(DrawerNavigation);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant