1.0.1 • Published 6 years ago
@logisticinfotech/react-native-bottom-navigation v1.0.1
RNBottomNavigation for React Native
The Animated Tab Bar for React Native

Example
To run the example project, clone the repo, and run npm install from the Example directory first.
Installation
It is available through npm. To install just run
npm i @logisticinfotech/react-native-bottom-navigationin your project directory. And then link it's native dependency with
react-native link react-native-view-overflowand you're done!
Usage
This component requires just 2 props. onPress function, that should handle rendering tabs and an array of values objects that contains title and icons for given tabs.
<TabBar
onPress={(tabIndex) => { this._handlePress(tabIndex) }}
values={[
{ title: "News", icon: require("./assets/news.png") },
{ title: "Requests", icon: require("./assets/requests.png") },
{ title: "Events", icon: require("./assets/events.png") },
{ title: "Members", icon: require("./assets/members.png") },
{ title: "Account", icon: require("./assets/account.png") }
]}
/>Customization
Optionally you can pass tintColor prop, to adjust styling to your app.
Author
License
FluidBottomNavigation Component is available under the MIT license. See the LICENSE file for more info.