react-native-scrollable-tab-view-mask-bar
Version:
this is a custom tab bar for react-native-scrollable-tab-view
32 lines (23 loc) • 1.32 kB
Markdown
this component is a custom component of the react-native-scrollable-tab-view repository ,so I suggest you use this component and the combination of react-native-scrollable-tab-view.
1. Run `npm install react-native-scrollable-tab-view-mask-bar --save`
2. Run `npm install react-native-scrollable-tab-view --save`
```
var ScrollableTabView = require('react-native-scrollable-tab-view');
var MaskTabBar = require('react-native-scrollable-tab-view-mask-bar');
var App = React.createClass({
render() {
return (
<ScrollableTabView renderTabBar={() => <MaskTabBar someProp={'here'} showMask={true} maskMode='light' />}>
<ReactPage tabLabel="React" />
<FlowPage tabLabel="Flow" />
<JestPage tabLabel="Jest" />
</ScrollableTabView>
);
}
});
```
<a href="https://raw.githubusercontent.com/WaterEye0o/react-native-scrollable-tab-view-mask-bar/master/demo_images/scrollable_example.gif"><img src="https://raw.githubusercontent.com/WaterEye0o/react-native-scrollable-tab-view-mask-bar/master/demo_images/scrollable_example.gif" width="350"></a>