A variation of 'react-native-scrollable-tab-view' with a menu interface.
npm install react-native-scrollable-tab-menu
yarn add react-native-scrollable-tab-view
yarn add react-native-linear-gradient
react-native link
`
With npm:
`
npm install --save react-native-scrollable-tab-view
npm install --save react-native-linear-gradient
react-native link
`
##Simple Usage
`
import ScrollableTabMenu from 'react-native-scrollable-tab-menu'
...
render() {
return (
)
}
...
`
##Usage With Custom Props
`
import ScrollableTabMenu from 'react-native-scrollable-tab-menu'
...
render() {
return (
locations={[0.0, 0.5, 1.0]}
colors={["transparent", "white", "blue"]} tabColor="red"
backgroundImage={require('../images/myImage1.png')}
menuBackgroundColor={Scheme.white(1.0)}
menuImage={require('../images/myImage2.png')}
menuFontStyle={{color: "red", fontSize: 20}}
tabColor={"gray"}
>
)
}
...
``