0.0.4 • Published 2 years ago

react-native-scrollable-tabviewfork v0.0.4

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

react-native-scrollable-tabviewfork

This is a modification based on react-native-scrollable-tab-view. Due to bugs and compatibility issues in the plugin itself, this version is released to avoid frequent modification of the original plugin. For learning use only.

Add it to your project

  1. Run npm install react-native-scrollable-tabviewfork --save
  2. var ScrollableTabView = require('react-native-scrollable-tabviewfork ');

Basic usage

var ScrollableTabView = require('react-native-scrollable-tabviewfork');

var App = React.createClass({
  render() {
    return (
      <ScrollableTabView>
        <ReactPage tabLabel="React" />
        <FlowPage tabLabel="Flow" />
        <JestPage tabLabel="Jest" />
      </ScrollableTabView>
    );
  }
});

Attention:

This version update mainly removes the @react-native-community/viewpager code, and removes the distinction between the android system and the IOS system。