Module for change color of react-native footer navigation bar and Statusbar
Go to file
Bhavan d096448d48 Added Status Bar and Fixed navbar to api level > 21 2018-03-15 10:31:40 +05:30
android Added Status Bar and Fixed navbar to api level > 21 2018-03-15 10:31:40 +05:30
screenshot Init Project 2018-03-13 10:56:25 +05:30
.gitignore added gitignore 2018-03-13 10:59:41 +05:30
LICENSE Init Project 2018-03-13 10:56:25 +05:30
README.md Update README.md 2018-03-13 11:24:56 +05:30
index.js Added Status Bar and Fixed navbar to api level > 21 2018-03-15 10:31:40 +05:30
package.json Init Project 2018-03-13 10:56:25 +05:30

README.md

React Native Footer Navigation Bar Color

NPM version

GitHub issues

GitHub forks

GitHub stars

NPM

react-native-navbar-color [android only]

Simple package that will set footer navigation bar color.

Do you need this?

if yes you are at right place!!!

actual

Installation

Install the dependencies and then after start the packager.

$ npm install --save react-native-navbar-color

Linking library

You need to register package in your app. follow steps

Automatic

Use react-native link command to link library.

react-native link react-native-navbar-color

Manual

  1. [REACT_NATIVE_PROJECT/android/app/src/main/java/PROJECT_ID/MainApplication.java]

    Make sure you include in MainApplication.java file.

    import com.bhavan.RNNavBarColor.RNNavBarColor;
    

    In the getPackages method, add the following instantiation to the returned list.

    new RNNavBarColor()
    
  2. [REACT_NATIVE_PROJECT/android/app/build.gradle]

    In the build.gradle file add inside dependencies { .... }

    compile project(':react-native-navbar-color')
    
  3. [REACT_NATIVE_PROJECT/android/settings.gradle]

    In the settings.gradle file add

    include ':react-native-navbar-color'
    project(':react-native-navbar-color').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-navbar-color/android')
    

Example

This is how you can set footer navigationbar color in android.

import package from node_modules

import NavigationBar from 'react-native-navbar-color'

Call method to set color

NavigationBar.setColor('#ffab8e')

Here it is full example.

import React, { Component } from 'react'
import { View, Text } from 'react-native'
import NavigationBar from 'react-native-navbar-color'

export default class App extends Component {
    componentWillMount() {
        NavigationBar.setColor('#ffab8e')
    }

    render() {
        return (
            <View>
                <Text>
                    This is how we can set the navigation bar color!
                </Text>
            </View>
        )
    }
}

Output

example

Todos

  • Write MORE good methods

License

MIT