All Projects → territoryfan → react-native-tabbar

territoryfan / react-native-tabbar

Licence: other
A tabbar component for React Native

Programming Languages

javascript
184084 projects - #8 most used programming language
objective c
16641 projects - #2 most used programming language
python
139335 projects - #7 most used programming language
java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to react-native-tabbar

TabBar
📱 TabBar – highly customizable tab bar for your SwiftUI application.
Stars: ✭ 105 (+77.97%)
Mutual labels:  tabbar, tab
Material Bottom Nav
A bottom navigation bar adhering to the Material Design specification.
Stars: ✭ 41 (-30.51%)
Mutual labels:  tab, nav
Poliopager
A flexible TabBarController with search tab like SNKRS.
Stars: ✭ 133 (+125.42%)
Mutual labels:  tabbar, tab
KPSmartTabBar
A fully customisable and flexible tab bar controller
Stars: ✭ 37 (-37.29%)
Mutual labels:  tabbar, tab
buttons tabbar
A Flutter package that implements a TabBar where each label is a toggle button.
Stars: ✭ 49 (-16.95%)
Mutual labels:  tabbar, tab
react-native-viewpager-indicator
修改自react-native-scrollable-tab-view,增加了根据文字内容适配下划线长度的功能。
Stars: ✭ 52 (-11.86%)
Mutual labels:  tabbar, tab
React Tabtab
💃 Make your react tab dance🕺
Stars: ✭ 347 (+488.14%)
Mutual labels:  react-component, tab
react-super-styled
Responsive JSX layouts with Styled Components
Stars: ✭ 77 (+30.51%)
Mutual labels:  react-component
insect
🛠 Highly customisable, minimalistic input x select field for React.
Stars: ✭ 33 (-44.07%)
Mutual labels:  react-component
v-switcher
An powerful display tabs with Vue
Stars: ✭ 56 (-5.08%)
Mutual labels:  nav
react-github-contribution-calendar
A React component for GitHub-like heatmap calendar
Stars: ✭ 100 (+69.49%)
Mutual labels:  react-component
QWTabBar
自定义TabBar 使用简单
Stars: ✭ 19 (-67.8%)
Mutual labels:  tabbar
shared-react-components-example
An example of a mono-repository of shared React components libraries!
Stars: ✭ 85 (+44.07%)
Mutual labels:  react-component
Figicons
📦 150+ packaged & ready icons, designed in Figma. Ships with support for custom line icons.
Stars: ✭ 20 (-66.1%)
Mutual labels:  react-component
best-of-react
🏆 A ranked list of awesome React open-source libraries and tools. Updated weekly.
Stars: ✭ 364 (+516.95%)
Mutual labels:  react-component
react-notification-alert
React bootstrap 4 notification alert
Stars: ✭ 34 (-42.37%)
Mutual labels:  react-component
picker
📅 All Date Pickers you need.
Stars: ✭ 185 (+213.56%)
Mutual labels:  react-component
AppKitFocusOverlay
Add hotkey(s) to display the key focus path for any window in your AppKit application.
Stars: ✭ 42 (-28.81%)
Mutual labels:  tab
react-dice-complete
Complete dice rolling functionality and animations
Stars: ✭ 60 (+1.69%)
Mutual labels:  react-component
react-octicon
A GitHub Octicons icon React component
Stars: ✭ 76 (+28.81%)
Mutual labels:  react-component

react-native-tabbar

A tabbar component for React Native

Overview

tabbar using react-native,support android and ios,mobile bottom tab bar with more freedom.And what's more,solved the problem overflow parent hidden on the android,also it can be defined center item by itself.

Installation

Make sure that you are in your React Native project directory and run

npm install react-native-nav-tabbar --save

Basic usage

import TabBar from 'react-native-nav-tabbar';
<TabBar>
    <TabBar.Item
        icon={require('./images/Home.png')}
        selectedIcon={require('./images/HomeActive.png')}
        title="Home"
    >
        <View style={styles.textContent}>
            <Text style={{fontSize: 18}}>Home</Text>
        </View>
    </TabBar.Item>
    <TabBar.Item>
        <View style={styles.textContent}>
            <Text style={{fontSize: 18}}>Friends</Text>
        </View>
    </TabBar.Item>
    <TabBar.Item
        icon={require('./images/My.png')}
        selectedIcon={require('./images/MyActive.png')}
        title="Me"
    >
        <View style={styles.textContent}>
            <Text style={{fontSize: 18}}>Me</Text>
        </View>
  </TabBar.Item>
</TabBar>

Component props

prop value required/optional description
icon image source required the icon when item is not focus
selectedIcon image source required the icon when item is focus
title string required title of item

Examples

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].