Skip to content

This reactnative package provides custom header component for mobile apps. also providing utility method to change statusbar color.

License

Notifications You must be signed in to change notification settings

chiragramimi/React-Native-top-navbar

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

React Native top-navbar

A @mindinventory/rn-top-navbar package is use to create custom navigation for react native apps. user can fully customize navbar. you can change the background color of statusbar. Navigation can contain component like icon, image, text.

navbar navbar_1 navbar_2 navbar_3 navbar_4

Installation

using npm:

npm install @mindinventory/rn-top-navbar

using yarn:

yarn add @mindinventory/rn-top-navbar

Supported platform

  • Android
  • Ios

Usage

import Header from '@mindinventory/rn-top-navbar';
...
<Header style={{ backgroundColor: '#009999' }} statusBarBackground='#008080' barStyle='light-content'>
    <Header.Left style={{ backgroundColor: '#009999', width: "15%" }}>
        <Icon name='arrow-left' style={{color: '#fff', fontSize: 18}} />
    </Header.Left>
    <Header.Body style={{ backgroundColor: '#009999', width: "70%" }}>
        <Text style={{color: '#fff'}}>Header Title</Text>
    </Header.Body>
    <Header.Right style={{ backgroundColor: '#009999', flexDirection: 'row', width: '15%' }}>
        <Icon name='bars' style={{color: '#fff', fontSize: 18}} />
    </Header.Right>
</Header>

Documentation

Navbar container props

Prop Type description
statusBarBackground string use for change background color of status bar.
barStyle string use for change content of status bar.
style style apply styles on navbar container.

Left container props

Prop Type description
style style apply styles on left container.

Body container props

Prop Type description
style style apply styles on body container.

Right container props

Prop Type description
style style apply styles on right container.

Changelog

Version: 0.0.1

  • Initial Build

LICENSE!

@mindinventory/rn-top-navbar 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 [email protected] And do let us know if you have any questions or suggestion regarding our work.

About

This reactnative package provides custom header component for mobile apps. also providing utility method to change statusbar color.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 30.5%
  • Java 29.5%
  • Objective-C 21.4%
  • JavaScript 12.2%
  • Ruby 3.5%
  • Starlark 2.9%