You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

react-native-app-header

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-app-header

React Native App Header is a customizable component for React Native applications that allows you to easily implement a header bar at the top of your app screens. This header can contain titles, icons, or any other elements.

1.0.8
latest
Source
npmnpm
Version published
Weekly downloads
5
-28.57%
Maintainers
1
Weekly downloads
 
Created
Source

react-native-app-header

React Native App Header is a customizable component for React Native applications that allows you to easily implement a header bar at the top of your app screens. This header can contain titles, icons, or any other elements.

MainHeader SubHeader LogoHeader

Installation

You can install react-native-app-header via npm by running the following command in your React Native project directory:

  npm install react-native-app-header

MainHeader Usage

import AppHeader from 'react-native-app-header'
import { FontAwesome } from "react-native-vector-icons";


function App({navigation}) {
  return <AppHeader
          headerType="MainHeader"
          title="Home"
          headerColor="red"
          iconColor="white"
          titleColor="white"
           firstIcon={
            <FontAwesome name="plus-square-o" size={24} color="white" />
          }
          firstonClick={() => navigation.navigate("Help")}
          secondIcon={
            <FontAwesome name="question-circle-o" size={24} color="white" />
          }
          secondonClick={()=>navigation.navigate("AddUser")}
          />}
        />
}

SubHeader Usage

import AppHeader from 'react-native-app-header'
import { FontAwesome } from "react-native-vector-icons";


function App({navigation}) {
  return <AppHeader
          headerType="SubHeader"
          onBack={()=>navigation.goBack()}
          title="About"
          headerColor="red"
          iconColor="white"
          titleColor="white"
           firstIcon={
            <FontAwesome name="plus-square-o" size={24} color="white" />
          }
          firstonClick={() => navigation.navigate("Help")}
          secondIcon={
            <FontAwesome name="question-circle-o" size={24} color="white" />
          }
          secondonClick={()=>navigation.navigate("AddUser")}
          />}
        />
}

LogoHeader Usage

import AppHeader from 'react-native-app-header'
import { FontAwesome } from "react-native-vector-icons";
import LOGO from '../assets/logo.png'


function App({navigation}) {
  return <AppHeader
          headerType="LogoHeader"
          logo={LOGO}
          headerColor="red"
          iconColor="white"
           firstIcon={
            <FontAwesome name="plus-square-o" size={24} color="white" />
          }
          firstonClick={() => navigation.navigate("Help")}
          secondIcon={
            <FontAwesome name="question-circle-o" size={24} color="white" />
          }
          secondonClick={()=>navigation.navigate("AddUser")}
          />}
        />
}

Props

  • headerType : Type of header to render (MainHeader, SubHeader, or LogoHeader).
  • headerColor : Background color of the header.
  • headerStyle : Additional styles to apply to the header.
  • title : Text to display as the header title.
  • titleColor : Color of the header title.
  • firstIcon : Icon component for the first action.
  • firstonClick : Callback function for the first action.
  • secondIcon : Icon component for the second action.
  • secondonClick : Callback function for the second action.
  • opensideMenu : Callback function to open the side menu (applicable only for LogoHeader).
  • onBack : Callback function to handle the back action (applicable only for SubHeader).
  • iconColor: Color of the icons.
  • logo : Image source for the logo (applicable only for LogoHeader).

Contributing

Contributions are welcome! If you find any issues or have suggestions for improvements, please feel free to open an issue or submit a pull request on the GitHub repository: react-native-app-header.

License

This project is licensed under the ISC License. See the LICENSE file for details.

Contact

For any inquiries or support, you can reach out to the project maintainers via harshalmm143@gmail.com.

Authors

Keywords

App-header

FAQs

Package last updated on 04 Mar 2024

Did you know?

Socket

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.

Install

Related posts