Skip to content

Navigation TabBar footer component for IOS and Android with slide animation which contains tab icon and title.

License

Notifications You must be signed in to change notification settings

bhavika162/react-native-tab-bar-footer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

react-native-tab-bar-footer

npm version npm version

Navigation TabBar footer component for IOS and Android with slide animation which contains tab icon and title.

Installation

yarn add react-native-tab-bar-footer

Usage

import TabBar from 'react-native-tab-bar-footer'
...
  const tabs = [
    {
      icon: star,
      activeIcon: starActive,
      title: 'Favorites'
    },
    {
      icon: play,
      activeIcon: playActive,
      title: 'Play'
    },
    {
      icon: user,
      activeIcon: userActive,
      title: 'Profile'
      
    },
  ]
  render() {
    return <TabBar onTabChange={(index) => alert(index)} tabs={tabs} />
  }

Props

Prop Default Type Description
tabs [] Array<Tab> Tab objects
initialIndex 0 number Initial active tab
onTabChange undefined func onClick tab
slideSpeed 25 number tabBar animation speed
slideBounciness 10 number tabBar bounciness
tabSize 30 number tab size
barColor 'white' color tabBar color
height 60 number tabBar height
titleStyle - style title custom style
iconStyle - style icon custom style
animationDuration 200 number animation duration
rippleProps rippleCentered object Ripple component props

Tab object structure:

type Tab = { 
icon: string|number, 
activeIcon: string|number, 
title: string
}

Questions or suggestions?

Feel free to open an issue

About

Navigation TabBar footer component for IOS and Android with slide animation which contains tab icon and title.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%