react-native-android-navbar is a lightweight and efficient React Native package that provides a simple interface to customize the navigation bar on Android devices. It leverages the native Android API to allow for a seamless integration into your React Na
npm install react-native-android-navbarsh
npm install react-native-android-navbar
`
Usage
`js
import {
changeNavigationBarColor,
hideNavigationBar,
showNavigationBar,
} from 'react-native-android-navbar';
// ...
const setNavBarColor = async (navColor: string) => {
const response = await changeNavigationBarColor(navColor, true, false);
};
``