react-native-tab-button

0.2.0 • Public • Published

react-native-tab-button

Installation

npm install react-native-tab-button --save

Usage

base

import TabButton from 'react-native-tab-button';
 
class AwesomeProject extends Component {
  render() {
    return (
        <View>
            <TabButton leftLabel="Update Version" onPress={this._doUpgrade} rightLabel="1.0" />
            <TabButton leftLabel="About us" />
        </View>
    );
  }
  _doUpgrade() {
      console.log("do upgrade");
  }
}

custom style

import { StyleSheet } from 'react-native';
 
const mystyle = StyleSheet.create({
    leftLabel: {
        flex: 1,
        fontSize: 22,
        color: "red",
        paddingLeft: 18
    },
});
 
export default mystyle;
import mystyle from './mystyle';
<TabButton leftLabel="About us" customStyle={mystyle}/>

View demo folder for more details.

Demo

License

Apache License V2

/react-native-tab-button/

    Package Sidebar

    Install

    npm i react-native-tab-button

    Weekly Downloads

    1

    Version

    0.2.0

    License

    Apache-2.0

    Last publish

    Collaborators

    • luffyke