GitPedia

React native tabbar interaction

Tabbar Component For React-Native

From Mindinventory·Updated June 14, 2026·View on GitHub·

Beautiful Tabbar Interaction with Sliding Inset FABs, made for React Native with RTL support. The project is written primarily in TypeScript, distributed under the MIT License license, first published in 2018. Key topics include: android, easy-to-use, ios, react-animation, react-native.

React Native Tabbar Interaction

Beautiful Tabbar Interaction with Sliding Inset FABs,
made for React Native with RTL support.

Check it out on Béhance (https://www.behance.net/gallery/68043143/Tab-bar-interaction-with-animated-icons)

Check it out on Dribbble (https://dribbble.com/shots/4844696-Tab-bar-interaction-with-animated-icons)

<img src="https://cdn.dribbble.com/users/1233499/screenshots/4844696/preview.gif" >

Installation

using npm:

npm install @mindinventory/react-native-tab-bar-interaction

using yarn:

yarn add @mindinventory/react-native-tab-bar-interaction

Dependencies

  • react-native-reanimated

Supported platform

  • Android
  • Ios

Usage

js
import { TabBar, TabsType, } from "@mindinventory/react-native-tab-bar-interaction"; ... const tabs = [ { name: 'Home', activeIcon: <Icon name="home" color="#fff" size={25} />, inactiveIcon: <Icon name="home" color="#4d4d4d" size={25} /> }, { name: 'list', activeIcon: <Icon name="list-ul" color="#fff" size={25} />, inactiveIcon: <Icon name="list-ul" color="#4d4d4d" size={25} /> }, { name: 'camera', activeIcon: <Icon name="camera" color="#fff" size={25} />, inactiveIcon: <Icon name="camera" color="#4d4d4d" size={25} /> }, { name: 'Notification', activeIcon: <Icon name="bell" color="#fff" size={25} />, inactiveIcon: <Icon name="bell" color="#4d4d4d" size={25} /> }, { name: 'Profile', activeIcon: <Icon name="user" color="#fff" size={25} />, inactiveIcon: <Icon name="user" color="#4d4d4d" size={25} /> }, ]; ... return ( <TabBar tabs={tabs} containerWidth={350} onTabChange={(tab: TabsType, index: number) => console.log('Tab changed')} /> );

Component props

Tabbar

propvaluerequired/optionaldescription
tabsarrayrequiredIt is user for showing icon and label.
tabBarContainerBackgroundstringoptionalUse for change tabBar container color.
onTabChangefunctionrequiredUse to perform any action when click on tab.
containerBottomSpacenumberoptionalUse to add space between tabBar container and from bottom of screen.
containerWidthnumberrequiredUse for set width of tabBar container
containerTopRightRadiusnumberoptionalUse for add top right radius on tabBar container
containerTopLeftRadiusnumberoptionalUse for add top left radius on tabBar container
containerBottomLeftRadiusnumberoptionalUse for add bottom left radius on tabBar container
containerBottomRightRadiusnumberoptionalUse for add bottom right radius on tabBar container
defaultActiveTabIndexnumberoptionalUse to set default active tab
transitionSpeednumberoptionalUse to set transition speed
circleFillColorstringoptionalUse to set background color for circle

tabs

propertiesvaluerequired/optionaldescription
namestringrequireduse for showing tab label.
activeIconcomponentrequiredUse for showing tab active icon/image.
inactiveIconcomponentrequiredUse for showing tab inactiveIcon icon/image.

LICENSE!

React-native-tabbar-interaction 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 sales@mindinventory.com And do let us know if you have any questions or suggestion regarding our work.

Contributors

Showing top 3 contributors by commit count.

View all contributors on GitHub →

This article is auto-generated from Mindinventory/react-native-tabbar-interaction via the GitHub API.Last fetched: 6/19/2026