npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-custom-navigation-tabs

v3.0.1

Published

Custom bottom navigation tabs for react native

Downloads

15

Readme

A custom bottomTabNavigator which supports 5 different types of tabBar styling and animations.

Install via npm

npm i react-native-custom-navigation-tabs

Import the TabBar component from react-native-custom-navigation-tabs:

import TabBar from 'react-native-custom-navigation-tabs'
import React from 'react';
import { createAppContainer } from 'react-navigation';
import { createBottomTabNavigator } from 'react-navigation-tabs';
import Icon from 'react-native-vector-icons/FontAwesome'

import TabBar from 'react-native-custom-navigation-tabs'

import { HomeScreen, SearchScreen, FavoritesScreen, ProfileScreen, LikeScreen } from './Screens'

const TabNavigator = createBottomTabNavigator(
  {
    Home: {
      screen: HomeScreen,
      navigationOptions: {
        tabBarIcon: ({ tintColor }) => <Icon size={25} name="home" style={{ color: tintColor }} />
      }
    },
    Search: {
      screen: SearchScreen,
      navigationOptions: {
        tabBarIcon: ({ tintColor }) => <Icon size={25} name="search" style={{ color: tintColor }} />
      }
    },
    Favorites: {
      screen: FavoritesScreen,
      navigationOptions: {
        tabBarIcon: ({ tintColor }) => <Icon size={25} name="heart" style={{ color: tintColor }} />
      }
    },
    Profile: {
      screen: ProfileScreen,
      navigationOptions: {
        tabBarIcon: ({ tintColor }) => <Icon size={25} name="user-circle" style={{ color: tintColor }} />
      }
    },
    Likes: {
      screen: LikeScreen,
      navigationOptions: {
        tabBarIcon: ({ tintColor }) => <Icon size={25} name="thumbs-up" style={{ color: tintColor }} />
      }
    }

  },
  {
    tabBarComponent: TabBar,    // pass TabBar here.
    tabBarOptions: {}        // discussed below.
  }
);

const TabNavigation = createAppContainer(TabNavigator)

export default TabNavigation;

As shown in above example, you need to add your icon in navigationOptions{} beside your screen and do remember to provide the style={{ color: tintColor }} to it as shown.

This is the place where we provide the type and custom styling to our tab navigator. Below are the tabBar options respective to each tabBarType.

  1. Click here to view this type.

    tabBarOptions{} for this type will be -

    tabBarOptions: {
       activeTintColor:   // **(optional)**, defaults to '#000000' if not provided. This is the color of the active icon.
       inactiveTintColor: // **(optional)**, defaults to 'grey' if not provided. This is the color of the inactive icon.
       tabBarBackgroundColor: // **(optional)**, defaults to '#ffffff' if not provided. This is the backgroundColor of the whole tab bar.
       tabBarHeight: // **(optional)**, defaults to 70 if not provided. This is the height of the tab bar.
       tabBarType: 'light', // **(important)**, and should be provided.
       numOfTabs: 5, // **(important)** and should be provided. It is the number of screens that are defined in navigator like in the above example it is 5.
    }
  2. Click here to view this type.

    tabBarOptions{} for this type will be -

    tabBarOptions: {
       activeTintColor:   // **(optional)**, defaults to '#ffffff' if not provided. This is the color of the active icon.
       inactiveTintColor: // **(optional)**, defaults to 'grey' if not provided. This is the color of the inactive icon.
       tabBarBackgroundColor: // **(optional)**, defaults to '#000000' if not provided. This is the backgroundColor of the whole tab bar.
       tabBarHeight: // **(optional)**, defaults to 70 if not provided. This is the height of the tab bar.
       tabBarType: 'dark', // **(important)**, and should be provided.
       numOfTabs: 5, // **(important)** and should be provided. It is the number of screens that are defined in navigator like in the above example it is 5.
    }
  3. Click here to view this type.

    tabBarOptions{} for this type will be -

    tabBarOptions: {
       activeTintColor: // **(optional)**, defaults to '#000000' if not provided. This is the color of the active icon.
       inactiveTineColor: // **(optional)**, defaults to 'grey' if not provided. This is the color of the active icon.
       tabBarHeight: // **(optional)**, defaults to 70 if not provided. This is the height of the tab bar.
       tabBarType: 'colorFillTab', // **(important)**, and should be provided.
       numOfTabs: 5, // **(important)** and should be provided. It is the number of screens that are defined in navigator like in the above example it is 5.
       activeBackgroundColor: {                // **(important)** and should be provided.
          Home: 'brown',
          Search: 'yellow',
          Favorites: 'purple',
          Profile: 'blue',
          Likes: 'pink'
       }
    }

NOTE : Here, activeBackgroundColor are the colors that the tabBar background takes corresponding to each tab. The key of each value should be exactly the same as the label of your tab.

  1. Click here to view this type.

    tabBarOptions{} for this type will be -

    tabBarOptions: {
       activeTintColor:   // **(optional)**, defaults to '#000000' if not provided. This is the color of the active icon.
       inactiveTintColor: // **(optional)**, defaults to 'grey' if not provided. This is the color of the inactive icon.
       tabBarBackgroundColor: // **(optional)**, defaults to '#ffffff' if not provided. This is the backgroundColor of the whole tab bar.
       tabBarHeight: // **(optional)**, defaults to 70 if not provided. This is the height of the tab bar.
       tabBarType: 'bubbleTab', // **(important)**, and should be provided.
       numOfTabs: 5, // **(important)** and should be provided. It is the number of screens that are defined in navigator like in the above example it is 5.
       activeBackgroundColor: // **(optional)**, defaults to '#DCDCDC' if not provided. This is the color that the active tab background takes.  
    }
  2. Click here to view this type.

    tabBarOptions{} for this type will be -

    tabBarOptions: {
       activeTintColor:   // **(optional)**, defaults to '#000000' if not provided. This is the color of the active icon.
       inactiveTintColor: // **(optional)**, defaults to 'grey' if not provided. This is the color of the inactive icon.
       tabBarBackgroundColor: // **(optional)**, defaults to '#ffffff' if not provided. This is the backgroundColor of the whole tab bar.
       tabBarHeight: // **(optional)**, defaults to 70 if not provided. This is the height of the tab bar.
       tabBarType: 'zoomInOut', // **(important)**, and should be provided.
       numOfTabs: 5, // **(important)** and should be provided. It is the number of screens that are defined in navigator like in the above example it is 5.
       activeBackgroundColor: // **(optional)**, defaults to '#1178A9' if not provided. This is the color that the active tab background takes.  
    }

This is all that needs to be done. Have a great time using this module. I hope it serves your purpose!

  • React
  • react-native
  • react-navigation
  • react-navigation-tabs
  • react-native-pose
  • Animated