react-native-navbar
react-native-navbar copied to clipboard
Navbar component for React Native
I am PR for create guide in navbar customize, please review thank :)
I want to have burger button for drawer opening when there is only one route in stack. When we pushed a route to navigator I want to display back button....
Native iOS nav bar suppress status bar in landscape layout to save space, could we do the same for this great component? ![simulator screen shot 29 2015 5 06 40...
add textStyle for iconfont support
When `ViewControllerBasedStatusBarAppearance` key in the Info.plist is set to YES, any attempt to `setStyle` or `setHidden` on `StatusBarIOS` will cause an exception be thrown. It may be reasonable to add...
this.props.navigator.push({ id: 'MainPage', name: 'test', passProps: {userInfo: res} }); i am setting property userInfo but passProps not working and i am not able to get property parameter in second scene
If you use a long title it doesn't truncate and instead overflow (because in your component style you use absolute positioning and doesn't set 'numberOfLines' on the Text component). See:...
Examples were still based on older versions of react-native which is not compatible with latest versions. This PR upgrades examples so that they are compatible with current version of react-native.
In many circumstances we want to add animations to a navBar transition. For example, when we scroll up / down in a `ScrollView`, we want to hide / show navBar....