React Native System Navigation Bar Versions Save

React Native lets you customize the navigation bar for Android.

v2.0.0

1 year ago

Changes

  • lightNavigationBar() is deprecated. Created setBarMode() instead. Its purpose of use is the same, but its use has been made more flexible.
  • Changed the bar style parameter for the setNavigationColor() function. It can now be used as light or dark. Added an extra parameter that allows the bar mode to be valid only for StatusBar, NavigationBar or both.

Previous Usage:

SystemNavigationBar.setNavigationColor('red', true);

Current Usage:

SystemNavigationBar.setNavigationColor('red', 'light');
SystemNavigationBar.setNavigationColor('red', 'dark', 'both');

Bug Fixed

https://github.com/kadiraydinli/react-native-system-navigation-bar/commit/e435d7221ace30e90191556fddebf8d2596289ef by @cemocanon

v1.0.5

1 year ago

v1.0.5

v1.0.4

2 years ago

v1.0.2

3 years ago

The first version of the package. React Native lets you customize the navigation bar for Android.