npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-system-navigation-bar

v2.6.4

Published

React Native lets you customize the navigation bar for Android.

Downloads

29,038

Readme

react-native-system-navigation-bar

npm month downloads npm all time downloads

React Native lets you customize the navigation bar for Android.

Installation

yarn add react-native-system-navigation-bar

Usage

navigationHide()

Hides the navigation bar.

import SystemNavigationBar from 'react-native-system-navigation-bar';

SystemNavigationBar.navigationHide();

navigationShow()

Shows the navigation bar.

import SystemNavigationBar from 'react-native-system-navigation-bar';

SystemNavigationBar.navigationShow();

leanBack()

For full screen experience where the user will not interact heavily with the screen. You can browse the documentation for more information.

| Type | Required | Default | | ------- | -------- | ------- | | boolean | No | true |

import SystemNavigationBar from 'react-native-system-navigation-bar';

SystemNavigationBar.leanBack();

immersive()

The immersive mode is intended for apps in which the user will be heavily interacting with the screen. You can browse the documentation for more information.

| Type | Required | Default | | ------- | -------- | ------- | | boolean | No | true |

import SystemNavigationBar from 'react-native-system-navigation-bar';

SystemNavigationBar.immersive();

stickyImmersive()

In the regular immersive mode, any time a user swipes from an edge, the system takes care of revealing the system bars—your app won't even be aware that the gesture occurred. You can browse the documentation for more information.

| Type | Required | Default | | ------- | -------- | ------- | | boolean | No | true |

import SystemNavigationBar from 'react-native-system-navigation-bar';

SystemNavigationBar.stickyImmersive();

setBarMode()

Navigation bar and status changes to bar style.

| Name | Type | Required | Default | | -------------- | -------------------------- | -------- | ------- | | Bar Mode Style | light - dark | No | | | Bar Mode | status - navigation - both | No | both |

import SystemNavigationBar from 'react-native-system-navigation-bar';

SystemNavigationBar.setBarMode('light');
SystemNavigationBar.setBarMode('dark', 'navigation');

fullScreen()

Hide or show the navigation bar and the status bar.

| Type | Required | Default | | ------- | -------- | ------- | | boolean | No | true |

import SystemNavigationBar from 'react-native-system-navigation-bar';

SystemNavigationBar.fullScreen(true);

Note: For notched devices, add the code below to /android/app/src/main/res/values/styles.xml in your project to include the cutout for the notch.

<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>

After adding the code, the estimated content of the styles.xml file will be as follows.

<resources>
    <style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
        <item name="android:editTextBackground">@drawable/rn_edit_text_material</item>
        <item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
    </style>
</resources>

Check out the documentation for more information about this code.

lowProfile()

The icons in the system and navigation bar are visually retracted. You can browse the documentation for more information.

| Type | Required | Default | | ------- | -------- | ------- | | boolean | No | true |

import SystemNavigationBar from 'react-native-system-navigation-bar';

SystemNavigationBar.lowProfile();

setNavigationColor()

Changes the color of the navigation bar. It also changes the style of the status bar and navigation bar to dark or light.

| Name | Type | Required | Default | | -------------- | -------------------------- | -------- | ------- | | Color | RGB - HSL - Color Ints | Yes | | | Bar Mode Style | light - dark | No | | | Bar Mode | status - navigation - both | No | both |

import SystemNavigationBar from 'react-native-system-navigation-bar';

SystemNavigationBar.setNavigationColor('red');
SystemNavigationBar.setNavigationColor('translucent');
SystemNavigationBar.setNavigationColor('#FF0000', 'light');
SystemNavigationBar.setNavigationColor(0xff00ff00, 'dark');
SystemNavigationBar.setNavigationColor('blue', 'dark', 'status');
SystemNavigationBar.setNavigationColor('green', 'light', 'navigation');
SystemNavigationBar.setNavigationColor('yellow', 'light', 'both');
SystemNavigationBar.setNavigationColor('hsla(110, 56%, 49%, 0.5)');

getBarColor()

It allows you to access the color of the navigation bar, status bar or both bars as hex color.

| Name | Type | Required | Default | | ---- | -------------------------- | -------- | ------- | | Bar | status - navigation - both | No | both |

import SystemNavigationBar from 'react-native-system-navigation-bar';

const statusBarColor: string = await SystemNavigationBar.getBarColor('status'); // #757575
const navigationBarColor: string = await SystemNavigationBar.getBarColor(
  'navigation'
); // #FF0000

If the both option is selected, the colors of both the status bar and the navigation bar will return as Object.

import SystemNavigationBar, {
  GetBarColorType,
} from 'react-native-system-navigation-bar';

const barColors: GetBarColorType = await SystemNavigationBar.getBarColor(
  'both'
);
// { "status": "#757575", "navigation": "#FF0000" }

setFitsSystemWindows()

Boolean internal attribute to adjust view layout based on system windows such as the navigation bar. You can browse the documentation for more information.

| Type | Required | Default | | ------- | -------- | ------- | | boolean | No | true |

import SystemNavigationBar from 'react-native-system-navigation-bar';

SystemNavigationBar.setFitsSystemWindows();
SystemNavigationBar.setFitsSystemWindows(false);

setNavigationBarDividerColor()

Only API Level 28 (Android 9) and higher is supported.

Shows a thin line of the specified color between the navigation bar and the app content. You can browse the documentation for more information.

| Name | Type | Required | | ----- | ---------------------- | -------- | | Color | RGB - HSL - Color Ints | Yes |

import SystemNavigationBar from 'react-native-system-navigation-bar';

SystemNavigationBar.setNavigationBarDividerColor('red');
SystemNavigationBar.setNavigationBarDividerColor('#FF0000');
SystemNavigationBar.setNavigationBarDividerColor(0xff00ff00);
SystemNavigationBar.setNavigationBarDividerColor('hsla(110, 56%, 49%, 0.5)');

setNavigationBarContrastEnforced()

Only API Level 29 (Android 10) and higher is supported.

Sets whether the system should ensure that the navigation bar has enough contrast when a fully transparent background is requested. You can browse the documentation for more information.

| Type | Required | Default | | ------- | -------- | ------- | | boolean | No | true |

import SystemNavigationBar from 'react-native-system-navigation-bar';

SystemNavigationBar.setNavigationBarContrastEnforced(true);

And

All functions have callbacks.

Usage

import SystemNavigationBar from 'react-native-system-navigation-bar';

const show = async () => {
  const result = await SystemNavigationBar.navigationShow();

  console.log('Show: ', result); // true or Error Message
};

License

MIT