react-native-navbar
react-native-navbar copied to clipboard
Navbar component for React Native
Added an option to add icon to buttons
Added an option to add an icon to the buttons
## Almost every iOS 11 app has this new style for navigation titles:  ## Hope reac-native-navbar add this function. thank you. [iOSpreferslargetitles](https://developer.apple.com/documentation/uikit/uinavigationbar/2908999-preferslargetitles)
It works fine to not pass the `statusBar` property in, but if it's given, it must specify `hidden` to be `false`. This seems like a value to sensibly default and...
Hi I think it should be possible to style the Android status bar through your great navigation bar component. I don't understand why it is only possible to style the...
Hi i just want design a header/nav bar with profile image n user name and right side one button... but i m not able align the title to left.. and...
I integrated an option that would update the family font for the controls. So, leftButton / rightButton has a new property so called ‘fontFamily’ that expects a string as a...
I added my Navbar component like this: ` } />` The View container dont have paddings or margins and the status bar neither. ![screen shot 2016-06-06 at 5 29 30...
//index.ios.js ``` javascript renderScene (route, navigator) { let Component = route.component; let navBar = route.navigationBar; if (navBar) { navBar = React.cloneElement(navBar, { navigator, route, }); } return ( {navBar} );...