1.0.9 • Published 5 years ago

react-native-awesome-tabbar v1.0.9

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

React Native Awesome Tabbar

The awesome tabbar made with React Native.

npm version

Add it to your project

  1. Run npm install react-native-awesome-tabbar --save
  2. import TabBar from "react-native-awesome-tabbar";

Basic Usage

import TabBar from "react-native-awesome-tabbar";
...
  render() {
      return (
        <TabBar onChangeTab={(childen, index) => {}} backgroundColor="">
          <TabBar.Item title="Home" icon={require("./home.png")} activeColor="#5b37b7">
            <View>{/* Page Content */}</View>
          </TabBar.Item>
          <TabBar.Item title="Search" icon={require("./search.png")} activeColor="#e6a919">
            <View>{/* Page Content */}</View>
          </TabBar.Item>
          <TabBar.Item title="Profile" icon={require("./profile.png")} activeColor="#1194aa">
            <View>{/* Page Content */}</View>
          </TabBar.Item>
          <TabBar.Item
            title="Notification"
            icon={require("./notification.png")}
            activeColor="#c9379d"
            count={{ number: 999 }}
          >
            <View>{/* Page Content */}</View>
          </TabBar.Item>
        </TabBar>
      );
    }

Props

propvaluerequired/optionaldescription
titlestringrequiredtitle of item
iconimage sourcerequiredicon of item
activeColorstringoptionalcolor when item is focus
onChangeTabfunctionoptionalcallback when switching tabs
backgroundColorstringoptionalbackground color of tab
countobjectoptionalfor badge of icon

LICENSE!

react-native-awesome-tabbar is MIT-licensed.

Let us know!

We’d be really happy if you send us links to your projects where you use our component. Just send an email to locnguyen99dev@gmail.com and do let us know if you have any questions or suggestion regarding our work.

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago