0.1.4 • Published 4 years ago

react-native-header-types v0.1.4

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

react-native-headers

NPM

  • Fully customizable Header View for React Native.

Installation

$ npm install react-native-header-types

or

$ yarn add react-native-header-types

Demo

HeaderView

HeaderView

Progress Header

Progress Header

Example

ProgressHeader

 import  React  from  'react';

import {StyleSheet, Text, View, TouchableOpacity } from  'react-native';
import { ProgressHeader } from  'react-native-header-types'; 
 
  
class  Index  extends  React.Component {

constructor(props) {
	 super(props);
	 this.state  = {
		 isLoading:true,
		 modalVisible:  false,
	};
 }

	render() {
		 return (
			<View  style={styles.container}>
				 <ProgressHeader
					headerBackgroundColor="transparent"
					headerTitle="ProgressBar"
					headerTitleColor="#5DB482"
					currentprogress="1"
					totalProgress="5"
					progressBottomBarColor="#5DB482"
					progressInactiveColor="#F8F8F8"
					progressActiveColor="#5DB482"
					showHeaderTitle={false}/>

				</View>
			);
	}

}

 
const  styles  =  StyleSheet.create({
	container:{
	flex:  1,
	backgroundColor:'#f5f5f5',
	},
});
 

API Usage

PropertyTypeRequiredDescriptionDefault
headerBackgroundColorstringnoBackground color of Headernull
headerTitlestringnoTitle of HeaderDefault
headerTitleColorstringnoHeader Title colornull
currentprogressnumberyesCurrent progress of viewnull
totalProgressnumberyesTotal amount of view expectednull
progressBottomBarColorstringnocolor of progress bar bottom colornull
progressInactiveColorstringnoInactive progress bar colornull
progressActiveColorstringnoactive progress bar colornull
showHeaderTitlebooleannoshow or hide header contenttrue

HeaderView

 import  React  from  'react';

import {StyleSheet, Text, View, TouchableOpacity } from  'react-native';
import { HeaderView } from  'react-native-header-types';
import  LottieView  from  'lottie-react-native';
 
  
class  Index  extends  React.Component {

constructor(props) {
	 super(props);
	 this.state  = {
		 isLoading:true,
		 modalVisible:  false,
	};
 }

	render() {
		 return (
			<View  style={styles.container}>
				<HeaderView 
					headerBackgroundColor="#8E8E93"
					headerTitle="Header"
					headerTitleColor="white"
					titleCenter="false"
					rightComponent={<TouchableOpacity onPress={()=>this.hello()} ><Text>right gey</Text></TouchableOpacity>}
					leftComponent={<TouchableOpacity onPress={()=>this.hello()} >
					<LottieView source={require('./../../../assets/lottiefiles/menu.json')} autoPlay style={{width:60}} /></TouchableOpacity>}
					/>
			 </View>
			);
	}

}

 
const  styles  =  StyleSheet.create({
	container:{
	flex:  1,
	backgroundColor:'#f5f5f5',
	},
});
 

API Usage

PropertyTypeRequiredDescriptionDefault
headerBackgroundColorstringnoBackground color of Headernull
headerTitlestringnoTitle of Headernull
headerTitleColorstringnoHeader Title colorDefault
titleCenterbooleannoalign Header title centerfalse
rightComponentcomponentnoRight componentnull
leftComponentcomponentnoleft componentnull

don't forget to star, like and share :)

Licensing

This project is licensed under MIT license.