Как сделать навигационный ящик В React Native slide с правой стороны, я попробовал положение: вправо, но это не работает
export default createDrawerNavigator({
Home:{
screen: AppStackNav,
navigationOptions: {
drawerIcon: ({tintColor}) => (
<Icon name = 'ios-home' style={{fontSize:24, color: tintColor}}/>
),
drawerLabel: "Home",
}},
Setting: {
screen: SettingScreen,
navigationOptions: {
drawerLabel: "Setting",
drawerIcon: ({tintColor}) => (
<Icon name = 'ios-settings' style={{fontSize:24, color: tintColor}}/>
)}},
{
contentComponent: CustomDrawerComponent
},{
drawerPosition: 'right',}
);