Category: React Native Navigation
TabNavigator’s tabs are not displayed when nested in a DrawerNavigator
Hi, First, thank you for this module ! I have an issue when using a TabNavigator nested in a DrawerNavigator: tabs are not displayed. This…
Access TabIcon to add badge
I’ve been trying to add badges to tab view icons. At first I thought this would simply be a case of creating a component with…
Back button on iOS should be labeled with the title of the previous screen
Like it says on the tin. In addition to the leftwards-facing chevron, the back button in a StackNavigator’s navigation bar should include the title of…
Support drawer position, `left` or `right`
No description provided.
Can’t apply style to header
Hi! I’m trying to change the background color of my AppBar on iOS but I can’t import React from ‘react’ import { View, Text, StyleSheet…
support scrollable tab bar?
hello, I found an PR from react-native-community/react-native-tab-view#32 and it’s been merged for a long time ago. Because the code of react-native-tab-view/TabBar and react-navigation/TabBarBottom are similar,…
Integration between different navigators
It’d be nice if nested navigators were aware of each other and then adjust things automatically, for example When a stack navigator is inside another…
When I add icons to header and navigate to other screen, the icons stay
I added an right Icon to my header through the navigationOptions object in my first view. But when I go to the next screen it…
When wrapping nested navigator: navigation.states.routes is not an object
function TestTab() { return <Text>text</Text>; }; const TabNav = TabNavigator({ A: {screen: TestTab}, B: {screen: TestTab} }); function HomeScreen(props) { return <TabNav navigation={props.navigation} />; }…
add ability to specify headerComponent per screen
currently we can do this for navigator, but very useful would be if we can do this for specific screens. example: StackNavigator({ profile: { screen:…