Is there a way to position the menu point at the bottom of the screen? It would be great if we could easily customize the style of the navigation options for each element.
Check out my App Navigator below:
const AppNavigator = createDrawerNavigator(
{
Einkaufsliste: {
screen: MainScreen,
navigationOptions: {
drawerIcon: <Icon name="shopping-cart" />
}
},
Bearbeiten: {
screen: BasketEditScreen,
navigationOptions: {
drawerIcon: <Icon name="edit" />
}
}
},
{
contentComponent: CustomDrawerComponent
}
);
https://i.sstatic.net/bpR3f.png
Thank you!