Socket
Socket
Sign inDemoInstall

react-native-app-header

Package Overview
Dependencies
519
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

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.


Version published
Weekly downloads
12
decreased by-42.86%
Maintainers
1
Install size
9.19 kB
Created
Weekly downloads
 

Readme

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

FAQs

Last updated on 04 Mar 2024

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc