All Projects → Mindinventory → React-Native-top-navbar

Mindinventory / React-Native-top-navbar

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

Programming Languages

typescript
32286 projects
java
68154 projects - #9 most used programming language
objective c
16641 projects - #2 most used programming language
javascript
184084 projects - #8 most used programming language
ruby
36898 projects - #4 most used programming language
Starlark
911 projects

Projects that are alternatives of or similar to React-Native-top-navbar

fanga
A manga reader and downloader made with flutter
Stars: ✭ 61 (+125.93%)
Mutual labels:  mobile-app
QuizChallenge
Multiplayer Online Quiz
Stars: ✭ 19 (-29.63%)
Mutual labels:  mobile-app
react-native-bottom-bar
Fully customizable BottomBar with unique design shape for React Native.
Stars: ✭ 74 (+174.07%)
Mutual labels:  reactnative
react-native-animated-screen
React Native Animated Screens made easy
Stars: ✭ 28 (+3.7%)
Mutual labels:  reactnative
random-users-details
Random Users details in flutter from randomusers api
Stars: ✭ 14 (-48.15%)
Mutual labels:  mobile-app
photos
"Fx Fotos" is an opensource gallery app in react native with the same smoothness and features of Google Photos and Apple Photos. It is backend gnostic and connects to decentralized backends like "box", "Dfinity", "Filecoin" and "Crust".
Stars: ✭ 620 (+2196.3%)
Mutual labels:  reactnative
React Native Stretchy
🤸‍♀️A ReactNative scrollable stretchy header component
Stars: ✭ 216 (+700%)
Mutual labels:  header
AndroidOMRHelper
An android application for validating images of OMR sheets before they are sent for processing.
Stars: ✭ 38 (+40.74%)
Mutual labels:  mobile-app
Norimaki
🌀 Android client for Circle CI
Stars: ✭ 19 (-29.63%)
Mutual labels:  mobile-app
data examples
An example app showing different ways to pass to and share data with widgets and pages.
Stars: ✭ 56 (+107.41%)
Mutual labels:  mobile-app
fhemApp
Web-App zur Steuerung deiner Smarthome Umgebung in Verbindung mit FHEM.
Stars: ✭ 25 (-7.41%)
Mutual labels:  mobile-app
finclip-react-native-demo
FinClip RN 运行环境,让小程序在 RN 应用中无缝运行 / ReactNative DEMO for FinClip
Stars: ✭ 36 (+33.33%)
Mutual labels:  reactnative
expo-push-notification-helper
💬🔥This package helps you make expo push notification for React Native easy to use.
Stars: ✭ 32 (+18.52%)
Mutual labels:  reactnative
tanafaso-frontend
A Flutter application for Muslims that help them challenge and motivate themselves and their friends to do good deeds in a fun way.
Stars: ✭ 33 (+22.22%)
Mutual labels:  mobile-app
ocsigen-start
Ocsigen-start: an Eliom application skeleton ready to use to build your own application with users, (pre)registration, notifications, etc.
Stars: ✭ 70 (+159.26%)
Mutual labels:  mobile-app
React Native Header View
Fully customizable Header View with multiple design options for React Native.
Stars: ✭ 221 (+718.52%)
Mutual labels:  header
reactXstarter
React + Redux + React Native Starter Kit with reusable business logic. Sample TODO app built in.
Stars: ✭ 42 (+55.56%)
Mutual labels:  reactnative
react-native-lewin-screen-capture
获取系统截屏事件 react native
Stars: ✭ 20 (-25.93%)
Mutual labels:  reactnative
hackerweb-native-2
HackerWeb 2: A read-only Hacker News client.
Stars: ✭ 51 (+88.89%)
Mutual labels:  reactnative
RNAndroidPullToRefresh
React Native 封装基于 Ultra-Pull-To-Refresh 的下拉刷新控件
Stars: ✭ 17 (-37.04%)
Mutual labels:  reactnative

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].