React Native Navigation - Screen shows backbutton instead of DrawerNavigation
i m new to react native and trying to get working my navigation here. I have all JSON variables in one file which i will place here. I want to open Drawer with Home and Settings which is OK. But when i m on Settings screen, there is only backbutton instead of HamburgerIcon and DrawerNavigator. Here is my code, can you describe how to make a normal actionbar like in home page also in Settings(where is white header (action bar) instead of dark_cyan).
import React from 'react';
import { Platform } from 'react-native';
import {
TabNavigator,
StackNavigator,
DrawerNavigator,
} from 'react-navigation';
import { FontAwesome, Ionicons } from '@expo/vector-icons';
import WelcomeScreen from './screens/Welcome';
import HomeScreen from './screens/Home';
import ProfileScreen from './screens/Profile';
import FavoritesScreen from './screens/Favorites';
import SettingsScreen from './screens/Settings';
import ImageIcon from './components/ImageIcon'
import { HamburgerIcon, SettingsIcon, BackIcon } from './components/icons';
const day_icon = require('../assets/icons/ic_day.png');
const week_icon = require('../assets/icons/ic_week.png');
const month_icon = require('../assets/icons/ic_month.png');
import { CustomDrawerContent } from './components';
import { colors } from './utils/constants';
const AppMainTab = TabNavigator({
Home: {
screen: HomeScreen,
navigationOptions: ({ navigation }) => ({
drawerLabel: 'Domů',
drawerIcon: ({ tintColor }) => (
<FontAwesome name="home" size={23} color={tintColor} />
),
tabBarLabel: 'Denní program',
tabBarIcon: ({ tintColor }) => (
<ImageIcon tintColor={tintColor} text="DEN" src={day_icon} />
),
headerStyle: {
backgroundColor: colors.CYAN_DARK,
},
headerTitle: 'Denní program',
headerTitleStyle: {
color: colors.WHITE,
},
headerLeft: <HamburgerIcon onPress={() => navigation.navigate('DrawerOpen')} />,
})
},
Favorites: {
screen: FavoritesScreen,
navigationOptions: ({ navigation }) => ({
drawerLabel: 'Týdenní program',
drawerIcon: ({ tintColor }) => (
<ImageIcon tintColor={tintColor} text="TÝDEN" src={week_icon} />
),
tabBarLabel: 'Týdenní program',
tabBarIcon: ({ tintColor }) => (
<ImageIcon tintColor={tintColor} text="TÝDEN" src={week_icon} />
),
headerStyle: {
backgroundColor: colors.CYAN_DARK,
},
headerTitle: 'Týdenní program',
headerTitleStyle: {
color: colors.WHITE,
},
headerLeft: <HamburgerIcon onPress={() => navigation.navigate('DrawerOpen')} />,
})
},
Profile: {
screen: ProfileScreen,
navigationOptions: ({ navigation }) => ({
drawerLabel: 'Měsíční program',
drawerIcon: ({ tintColor }) => (
<ImageIcon tintColor={tintColor} src={month_icon} text="MĚSÍC" />
),
tabBarLabel: 'Měsíční program',
tabBarIcon: ({ tintColor }) => (
<ImageIcon tintColor={tintColor} src={month_icon} text="MĚSÍC" />
),
headerStyle: {
backgroundColor: colors.CYAN_DARK,
},
headerTitle: 'Měsíční program',
headerTitleStyle: {
color: colors.WHITE,
},
headerLeft: <HamburgerIcon onPress={() => navigation.navigate('DrawerOpen')} />,
headerRight: <SettingsIcon onPress={() => navigation.navigate('Settings')} />,
})
},
}, {
tabBarOptions: {
activeTintColor: colors.WHITE,
inactiveTintColor: colors.BLUE_LIGHT,
inactiveBackgroundColor: colors.GRAY_LIGHT,
activeBackgroundColor: colors.WHITE,
showIcon: true,
showLabel: Platform.OS === 'ios',
indicatorStyle: {
backgroundColor: colors.GRAY_LIGHT,
},
style: {
backgroundColor: colors.CYAN_DARK,
},
upperCaseLabel: false,
},
tabBarPosition: 'bottom',
swipeEnabled: false,
animationEnabled: false,
});
const AppMainStack = StackNavigator({
Home: { screen: AppMainTab },
Settings: { screen: SettingsScreen },
}, {
cardStyle: {
backgroundColor: colors.GRAY_LIGHT,
},
mode: 'modal',
});
const AppDrawer = DrawerNavigator({
Home: {
screen: AppMainStack,
},
Settings: {
screen: SettingsScreen,
navigationOptions: ({ navigation }) => ({
drawerLabel: 'Settings',
drawerIcon: ({ tintColor }) => (
<Ionicons name="md-settings" size={23} color={tintColor} />
),
headerStyle: {
backgroundColor: colors.DARK_CYAN,
},
headerTitle: 'Settings',
headerTitleStyle: {
color: colors.DARK_CYAN,
},
headerLeft: <HamburgerIcon onPress={() => navigation.navigate('DrawerOpen')} />,
}),
},
}, {
contentComponent: props =>
(<CustomDrawerContent
{...props}
/>),
contentOptions: {
activeBackgroundColor: colors.CYAN_DARK,
activeTintColor: colors.WHITE,
inactiveTintColor: colors.CYAN_DARK,
},
});
// const Navigator = TabNavigator({
// Welcome: { screen: WelcomeScreen },
// Main: { screen: AppDrawer },
// }, {
// navigationOptions: {
// tabBarVisible: false,
// },
// swipeEnabled: false,
// });
const Navigator = DrawerNavigator({
Main: { screen: AppDrawer },
}, {
navigationOptions: {
tabBarVisible: false,
},
swipeEnabled: false,
});
export default Navigator;
android react-native react-navigation react-navigation-drawer
add a comment |
i m new to react native and trying to get working my navigation here. I have all JSON variables in one file which i will place here. I want to open Drawer with Home and Settings which is OK. But when i m on Settings screen, there is only backbutton instead of HamburgerIcon and DrawerNavigator. Here is my code, can you describe how to make a normal actionbar like in home page also in Settings(where is white header (action bar) instead of dark_cyan).
import React from 'react';
import { Platform } from 'react-native';
import {
TabNavigator,
StackNavigator,
DrawerNavigator,
} from 'react-navigation';
import { FontAwesome, Ionicons } from '@expo/vector-icons';
import WelcomeScreen from './screens/Welcome';
import HomeScreen from './screens/Home';
import ProfileScreen from './screens/Profile';
import FavoritesScreen from './screens/Favorites';
import SettingsScreen from './screens/Settings';
import ImageIcon from './components/ImageIcon'
import { HamburgerIcon, SettingsIcon, BackIcon } from './components/icons';
const day_icon = require('../assets/icons/ic_day.png');
const week_icon = require('../assets/icons/ic_week.png');
const month_icon = require('../assets/icons/ic_month.png');
import { CustomDrawerContent } from './components';
import { colors } from './utils/constants';
const AppMainTab = TabNavigator({
Home: {
screen: HomeScreen,
navigationOptions: ({ navigation }) => ({
drawerLabel: 'Domů',
drawerIcon: ({ tintColor }) => (
<FontAwesome name="home" size={23} color={tintColor} />
),
tabBarLabel: 'Denní program',
tabBarIcon: ({ tintColor }) => (
<ImageIcon tintColor={tintColor} text="DEN" src={day_icon} />
),
headerStyle: {
backgroundColor: colors.CYAN_DARK,
},
headerTitle: 'Denní program',
headerTitleStyle: {
color: colors.WHITE,
},
headerLeft: <HamburgerIcon onPress={() => navigation.navigate('DrawerOpen')} />,
})
},
Favorites: {
screen: FavoritesScreen,
navigationOptions: ({ navigation }) => ({
drawerLabel: 'Týdenní program',
drawerIcon: ({ tintColor }) => (
<ImageIcon tintColor={tintColor} text="TÝDEN" src={week_icon} />
),
tabBarLabel: 'Týdenní program',
tabBarIcon: ({ tintColor }) => (
<ImageIcon tintColor={tintColor} text="TÝDEN" src={week_icon} />
),
headerStyle: {
backgroundColor: colors.CYAN_DARK,
},
headerTitle: 'Týdenní program',
headerTitleStyle: {
color: colors.WHITE,
},
headerLeft: <HamburgerIcon onPress={() => navigation.navigate('DrawerOpen')} />,
})
},
Profile: {
screen: ProfileScreen,
navigationOptions: ({ navigation }) => ({
drawerLabel: 'Měsíční program',
drawerIcon: ({ tintColor }) => (
<ImageIcon tintColor={tintColor} src={month_icon} text="MĚSÍC" />
),
tabBarLabel: 'Měsíční program',
tabBarIcon: ({ tintColor }) => (
<ImageIcon tintColor={tintColor} src={month_icon} text="MĚSÍC" />
),
headerStyle: {
backgroundColor: colors.CYAN_DARK,
},
headerTitle: 'Měsíční program',
headerTitleStyle: {
color: colors.WHITE,
},
headerLeft: <HamburgerIcon onPress={() => navigation.navigate('DrawerOpen')} />,
headerRight: <SettingsIcon onPress={() => navigation.navigate('Settings')} />,
})
},
}, {
tabBarOptions: {
activeTintColor: colors.WHITE,
inactiveTintColor: colors.BLUE_LIGHT,
inactiveBackgroundColor: colors.GRAY_LIGHT,
activeBackgroundColor: colors.WHITE,
showIcon: true,
showLabel: Platform.OS === 'ios',
indicatorStyle: {
backgroundColor: colors.GRAY_LIGHT,
},
style: {
backgroundColor: colors.CYAN_DARK,
},
upperCaseLabel: false,
},
tabBarPosition: 'bottom',
swipeEnabled: false,
animationEnabled: false,
});
const AppMainStack = StackNavigator({
Home: { screen: AppMainTab },
Settings: { screen: SettingsScreen },
}, {
cardStyle: {
backgroundColor: colors.GRAY_LIGHT,
},
mode: 'modal',
});
const AppDrawer = DrawerNavigator({
Home: {
screen: AppMainStack,
},
Settings: {
screen: SettingsScreen,
navigationOptions: ({ navigation }) => ({
drawerLabel: 'Settings',
drawerIcon: ({ tintColor }) => (
<Ionicons name="md-settings" size={23} color={tintColor} />
),
headerStyle: {
backgroundColor: colors.DARK_CYAN,
},
headerTitle: 'Settings',
headerTitleStyle: {
color: colors.DARK_CYAN,
},
headerLeft: <HamburgerIcon onPress={() => navigation.navigate('DrawerOpen')} />,
}),
},
}, {
contentComponent: props =>
(<CustomDrawerContent
{...props}
/>),
contentOptions: {
activeBackgroundColor: colors.CYAN_DARK,
activeTintColor: colors.WHITE,
inactiveTintColor: colors.CYAN_DARK,
},
});
// const Navigator = TabNavigator({
// Welcome: { screen: WelcomeScreen },
// Main: { screen: AppDrawer },
// }, {
// navigationOptions: {
// tabBarVisible: false,
// },
// swipeEnabled: false,
// });
const Navigator = DrawerNavigator({
Main: { screen: AppDrawer },
}, {
navigationOptions: {
tabBarVisible: false,
},
swipeEnabled: false,
});
export default Navigator;
android react-native react-navigation react-navigation-drawer
add a comment |
i m new to react native and trying to get working my navigation here. I have all JSON variables in one file which i will place here. I want to open Drawer with Home and Settings which is OK. But when i m on Settings screen, there is only backbutton instead of HamburgerIcon and DrawerNavigator. Here is my code, can you describe how to make a normal actionbar like in home page also in Settings(where is white header (action bar) instead of dark_cyan).
import React from 'react';
import { Platform } from 'react-native';
import {
TabNavigator,
StackNavigator,
DrawerNavigator,
} from 'react-navigation';
import { FontAwesome, Ionicons } from '@expo/vector-icons';
import WelcomeScreen from './screens/Welcome';
import HomeScreen from './screens/Home';
import ProfileScreen from './screens/Profile';
import FavoritesScreen from './screens/Favorites';
import SettingsScreen from './screens/Settings';
import ImageIcon from './components/ImageIcon'
import { HamburgerIcon, SettingsIcon, BackIcon } from './components/icons';
const day_icon = require('../assets/icons/ic_day.png');
const week_icon = require('../assets/icons/ic_week.png');
const month_icon = require('../assets/icons/ic_month.png');
import { CustomDrawerContent } from './components';
import { colors } from './utils/constants';
const AppMainTab = TabNavigator({
Home: {
screen: HomeScreen,
navigationOptions: ({ navigation }) => ({
drawerLabel: 'Domů',
drawerIcon: ({ tintColor }) => (
<FontAwesome name="home" size={23} color={tintColor} />
),
tabBarLabel: 'Denní program',
tabBarIcon: ({ tintColor }) => (
<ImageIcon tintColor={tintColor} text="DEN" src={day_icon} />
),
headerStyle: {
backgroundColor: colors.CYAN_DARK,
},
headerTitle: 'Denní program',
headerTitleStyle: {
color: colors.WHITE,
},
headerLeft: <HamburgerIcon onPress={() => navigation.navigate('DrawerOpen')} />,
})
},
Favorites: {
screen: FavoritesScreen,
navigationOptions: ({ navigation }) => ({
drawerLabel: 'Týdenní program',
drawerIcon: ({ tintColor }) => (
<ImageIcon tintColor={tintColor} text="TÝDEN" src={week_icon} />
),
tabBarLabel: 'Týdenní program',
tabBarIcon: ({ tintColor }) => (
<ImageIcon tintColor={tintColor} text="TÝDEN" src={week_icon} />
),
headerStyle: {
backgroundColor: colors.CYAN_DARK,
},
headerTitle: 'Týdenní program',
headerTitleStyle: {
color: colors.WHITE,
},
headerLeft: <HamburgerIcon onPress={() => navigation.navigate('DrawerOpen')} />,
})
},
Profile: {
screen: ProfileScreen,
navigationOptions: ({ navigation }) => ({
drawerLabel: 'Měsíční program',
drawerIcon: ({ tintColor }) => (
<ImageIcon tintColor={tintColor} src={month_icon} text="MĚSÍC" />
),
tabBarLabel: 'Měsíční program',
tabBarIcon: ({ tintColor }) => (
<ImageIcon tintColor={tintColor} src={month_icon} text="MĚSÍC" />
),
headerStyle: {
backgroundColor: colors.CYAN_DARK,
},
headerTitle: 'Měsíční program',
headerTitleStyle: {
color: colors.WHITE,
},
headerLeft: <HamburgerIcon onPress={() => navigation.navigate('DrawerOpen')} />,
headerRight: <SettingsIcon onPress={() => navigation.navigate('Settings')} />,
})
},
}, {
tabBarOptions: {
activeTintColor: colors.WHITE,
inactiveTintColor: colors.BLUE_LIGHT,
inactiveBackgroundColor: colors.GRAY_LIGHT,
activeBackgroundColor: colors.WHITE,
showIcon: true,
showLabel: Platform.OS === 'ios',
indicatorStyle: {
backgroundColor: colors.GRAY_LIGHT,
},
style: {
backgroundColor: colors.CYAN_DARK,
},
upperCaseLabel: false,
},
tabBarPosition: 'bottom',
swipeEnabled: false,
animationEnabled: false,
});
const AppMainStack = StackNavigator({
Home: { screen: AppMainTab },
Settings: { screen: SettingsScreen },
}, {
cardStyle: {
backgroundColor: colors.GRAY_LIGHT,
},
mode: 'modal',
});
const AppDrawer = DrawerNavigator({
Home: {
screen: AppMainStack,
},
Settings: {
screen: SettingsScreen,
navigationOptions: ({ navigation }) => ({
drawerLabel: 'Settings',
drawerIcon: ({ tintColor }) => (
<Ionicons name="md-settings" size={23} color={tintColor} />
),
headerStyle: {
backgroundColor: colors.DARK_CYAN,
},
headerTitle: 'Settings',
headerTitleStyle: {
color: colors.DARK_CYAN,
},
headerLeft: <HamburgerIcon onPress={() => navigation.navigate('DrawerOpen')} />,
}),
},
}, {
contentComponent: props =>
(<CustomDrawerContent
{...props}
/>),
contentOptions: {
activeBackgroundColor: colors.CYAN_DARK,
activeTintColor: colors.WHITE,
inactiveTintColor: colors.CYAN_DARK,
},
});
// const Navigator = TabNavigator({
// Welcome: { screen: WelcomeScreen },
// Main: { screen: AppDrawer },
// }, {
// navigationOptions: {
// tabBarVisible: false,
// },
// swipeEnabled: false,
// });
const Navigator = DrawerNavigator({
Main: { screen: AppDrawer },
}, {
navigationOptions: {
tabBarVisible: false,
},
swipeEnabled: false,
});
export default Navigator;
android react-native react-navigation react-navigation-drawer
i m new to react native and trying to get working my navigation here. I have all JSON variables in one file which i will place here. I want to open Drawer with Home and Settings which is OK. But when i m on Settings screen, there is only backbutton instead of HamburgerIcon and DrawerNavigator. Here is my code, can you describe how to make a normal actionbar like in home page also in Settings(where is white header (action bar) instead of dark_cyan).
import React from 'react';
import { Platform } from 'react-native';
import {
TabNavigator,
StackNavigator,
DrawerNavigator,
} from 'react-navigation';
import { FontAwesome, Ionicons } from '@expo/vector-icons';
import WelcomeScreen from './screens/Welcome';
import HomeScreen from './screens/Home';
import ProfileScreen from './screens/Profile';
import FavoritesScreen from './screens/Favorites';
import SettingsScreen from './screens/Settings';
import ImageIcon from './components/ImageIcon'
import { HamburgerIcon, SettingsIcon, BackIcon } from './components/icons';
const day_icon = require('../assets/icons/ic_day.png');
const week_icon = require('../assets/icons/ic_week.png');
const month_icon = require('../assets/icons/ic_month.png');
import { CustomDrawerContent } from './components';
import { colors } from './utils/constants';
const AppMainTab = TabNavigator({
Home: {
screen: HomeScreen,
navigationOptions: ({ navigation }) => ({
drawerLabel: 'Domů',
drawerIcon: ({ tintColor }) => (
<FontAwesome name="home" size={23} color={tintColor} />
),
tabBarLabel: 'Denní program',
tabBarIcon: ({ tintColor }) => (
<ImageIcon tintColor={tintColor} text="DEN" src={day_icon} />
),
headerStyle: {
backgroundColor: colors.CYAN_DARK,
},
headerTitle: 'Denní program',
headerTitleStyle: {
color: colors.WHITE,
},
headerLeft: <HamburgerIcon onPress={() => navigation.navigate('DrawerOpen')} />,
})
},
Favorites: {
screen: FavoritesScreen,
navigationOptions: ({ navigation }) => ({
drawerLabel: 'Týdenní program',
drawerIcon: ({ tintColor }) => (
<ImageIcon tintColor={tintColor} text="TÝDEN" src={week_icon} />
),
tabBarLabel: 'Týdenní program',
tabBarIcon: ({ tintColor }) => (
<ImageIcon tintColor={tintColor} text="TÝDEN" src={week_icon} />
),
headerStyle: {
backgroundColor: colors.CYAN_DARK,
},
headerTitle: 'Týdenní program',
headerTitleStyle: {
color: colors.WHITE,
},
headerLeft: <HamburgerIcon onPress={() => navigation.navigate('DrawerOpen')} />,
})
},
Profile: {
screen: ProfileScreen,
navigationOptions: ({ navigation }) => ({
drawerLabel: 'Měsíční program',
drawerIcon: ({ tintColor }) => (
<ImageIcon tintColor={tintColor} src={month_icon} text="MĚSÍC" />
),
tabBarLabel: 'Měsíční program',
tabBarIcon: ({ tintColor }) => (
<ImageIcon tintColor={tintColor} src={month_icon} text="MĚSÍC" />
),
headerStyle: {
backgroundColor: colors.CYAN_DARK,
},
headerTitle: 'Měsíční program',
headerTitleStyle: {
color: colors.WHITE,
},
headerLeft: <HamburgerIcon onPress={() => navigation.navigate('DrawerOpen')} />,
headerRight: <SettingsIcon onPress={() => navigation.navigate('Settings')} />,
})
},
}, {
tabBarOptions: {
activeTintColor: colors.WHITE,
inactiveTintColor: colors.BLUE_LIGHT,
inactiveBackgroundColor: colors.GRAY_LIGHT,
activeBackgroundColor: colors.WHITE,
showIcon: true,
showLabel: Platform.OS === 'ios',
indicatorStyle: {
backgroundColor: colors.GRAY_LIGHT,
},
style: {
backgroundColor: colors.CYAN_DARK,
},
upperCaseLabel: false,
},
tabBarPosition: 'bottom',
swipeEnabled: false,
animationEnabled: false,
});
const AppMainStack = StackNavigator({
Home: { screen: AppMainTab },
Settings: { screen: SettingsScreen },
}, {
cardStyle: {
backgroundColor: colors.GRAY_LIGHT,
},
mode: 'modal',
});
const AppDrawer = DrawerNavigator({
Home: {
screen: AppMainStack,
},
Settings: {
screen: SettingsScreen,
navigationOptions: ({ navigation }) => ({
drawerLabel: 'Settings',
drawerIcon: ({ tintColor }) => (
<Ionicons name="md-settings" size={23} color={tintColor} />
),
headerStyle: {
backgroundColor: colors.DARK_CYAN,
},
headerTitle: 'Settings',
headerTitleStyle: {
color: colors.DARK_CYAN,
},
headerLeft: <HamburgerIcon onPress={() => navigation.navigate('DrawerOpen')} />,
}),
},
}, {
contentComponent: props =>
(<CustomDrawerContent
{...props}
/>),
contentOptions: {
activeBackgroundColor: colors.CYAN_DARK,
activeTintColor: colors.WHITE,
inactiveTintColor: colors.CYAN_DARK,
},
});
// const Navigator = TabNavigator({
// Welcome: { screen: WelcomeScreen },
// Main: { screen: AppDrawer },
// }, {
// navigationOptions: {
// tabBarVisible: false,
// },
// swipeEnabled: false,
// });
const Navigator = DrawerNavigator({
Main: { screen: AppDrawer },
}, {
navigationOptions: {
tabBarVisible: false,
},
swipeEnabled: false,
});
export default Navigator;
android react-native react-navigation react-navigation-drawer
android react-native react-navigation react-navigation-drawer
asked Nov 22 at 22:52
Vojta Prchal
11
11
add a comment |
add a comment |
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53438820%2freact-native-navigation-screen-shows-backbutton-instead-of-drawernavigation%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53438820%2freact-native-navigation-screen-shows-backbutton-instead-of-drawernavigation%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown