1.0.3 • Published 6 years ago
react-navigation-selective-tab-bar v1.0.3
react-navigation-selective-tab-bar
Creates a custom TabBar where you can decide which routes to display
Install
npm install react-navigation-selective-tab-bar
Usage
{
One: {
screen: ScreenOne
},
Two: {
screen: ScreenTwo
},
Three: {
screen: ScreenThree
},
Four: {
screen: ScreenFour
}
},
{
tabBarComponent: props => {
return (
<BottomTabBar
{...props} // Required
display={["One", "Three"]} // Required
background="black" // Optional
/>
);
}
}
);ScreenShots
Example
git clone https://github.com/suarezluis/react-navigation-selective-tab-bar.gitcd react-navigation-selective-tab-barcd examplenpm install or yarn installreact-native run-ios or react-native run-android