thebylito / react-native-navigation-bar-color

React Native component to change bottom bar/navigation bar color on Android
MIT License
269 stars 49 forks source link

Full Screen bugs while opening Modals & Text inputs #35

Open gamenic-arim opened 4 years ago

gamenic-arim commented 4 years ago

Bugs Evidence:- 1587899218343 1587899263118

Ivanov89 commented 4 years ago

Same effect here . Any feedback will be appreciated !

Thanks!

morwalz commented 4 years ago

Hi, any solution ?

DeadKuriel commented 3 years ago

I have same problem.

Joshmatjjen commented 3 years ago

Lol... No fix yet, Same Problem, Very Frustrating

molimat commented 2 years ago

Add the property statusBarTranslucent to your Modal. It worked for me.

Example:

<Modal
  isVisible={isModal}
  backdropOpacity={0.5}
  backdropColor="black"
  animationIn="fadeIn"
  animationOut="fadeOut"
  statusBarTranslucent
></Modal>