Reputation: 80
Also, I want to add a button to exit.
<DrawerNavigatorItems
{...props}
itemsContainerStyle={{width: '100%'}}
/>
Upvotes: 1
Views: 49
Reputation: 7985
button to exit
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
<DrawerNavigatorItems {...props} />
<Button title={"exit"} onPress={() => {
//do exit
}} ></Button>
</View>
Upvotes: 1
Reputation: 645
Tipos:{
screen:Tipos,
navigationOptions:{
title: 'Tipos',
drawerLabel: ()=>null
}
},
Upvotes: 2