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

@codinggist/navbar-color-react-native

v0.0.1

Published

Module for change color of react-native footer navigation bar in android.

Downloads

5

Readme

React Native Footer Navigation Bar Color and Status Bar

NPM version GitHub issues GitHub forks GitHub stars

NPM

react-native-navbar-color

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')

API

| Method | Parameters | Default | Type | Description | Platform | ------ | ------ | ------ |------ |------ | ----- | | setColor | hexcolor | - | String | Navbar color in hex format in string| Android and API_Level >=21 | | setStatusBarColor| hexcolor, animation | - , true | String,Boolean | Statusbar color in hex format, Show animation true/false | Android| | setStatusBarTheme | one of light/dark/default , animation | default,true | String, Boolean | Theme of Statusbar Light/Dark/Default in String, Show animation true/false | Android/iOS|

Example

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

import package from node_modules

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

method to set nav color

NavigationBar.setColor('#ffab8e')

method to set statusbar color

NavigationBar.setStatusBarColor('#ffab8e',false)

method to set statusbar theme

NavigationBar.setStatusBarTheme('dark',true)

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 {
    componentDidMount() {
        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