kadiraydinli / react-native-system-navigation-bar

React Native lets you customize the navigation bar for Android.
https://www.npmjs.com/package/react-native-system-navigation-bar
MIT License
270 stars 19 forks source link

conflict between modal and setNavigationColor #2

Closed iagoMendesDaSilva closed 3 years ago

iagoMendesDaSilva commented 3 years ago

setNavigationColor removes color when Modal of react native is visible.

kadiraydinli commented 3 years ago

Hi, thanks for knowing the problem. To fix the problem, you can solve the problem by adding the following code to the /android/app/src/main/res/values/styles.xml file.

<style name="Theme.FullScreenDialog">
  <item name="android:windowBackground">@android:color/transparent</item>
  <item name="android:statusBarColor">@android:color/transparent</item>
  <item name="android:navigationBarColor">@android:color/transparent</item>
</style>
iagoMendesDaSilva commented 3 years ago

It worked correctly, thank you.