
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
react-native-header-types
Advanced tools
Fully customizable Header View for React Native.
$ npm install react-native-header-types
or
$ yarn add react-native-header-types
HeaderView
Progress Header
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',
},
});
Property | Type | Required | Description | Default |
---|---|---|---|---|
headerBackgroundColor | string | no | Background color of Header | null |
headerTitle | string | no | Title of Header | Default |
headerTitleColor | string | no | Header Title color | null |
currentprogress | number | yes | Current progress of view | null |
totalProgress | number | yes | Total amount of view expected | null |
progressBottomBarColor | string | no | color of progress bar bottom color | null |
progressInactiveColor | string | no | Inactive progress bar color | null |
progressActiveColor | string | no | active progress bar color | null |
showHeaderTitle | boolean | no | show or hide header content | true |
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',
},
});
Property | Type | Required | Description | Default |
---|---|---|---|---|
headerBackgroundColor | string | no | Background color of Header | null |
headerTitle | string | no | Title of Header | null |
headerTitleColor | string | no | Header Title color | Default |
titleCenter | boolean | no | align Header title center | false |
rightComponent | component | no | Right component | null |
leftComponent | component | no | left component | null |
This project is licensed under MIT license.
FAQs
Fully customizable Header View for React Native.
The npm package react-native-header-types receives a total of 0 weekly downloads. As such, react-native-header-types popularity was classified as not popular.
We found that react-native-header-types demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.