1

I am trying to display a dropdown message with react-native-flash-message on an app using React Navigation. The message looks great on iOS but is hidden behind the status bar on Android. I've tried modifying the zIndex and elevation values but that hasn't fixed it.

Android

enter image description here

iOS

enter image description here

Brian Li
  • 2,260
  • 1
  • 15
  • 18

1 Answers1

1

try add hideStatusBar statusBarHeight you can see in props .
your FlashMessage component may be like this

<FlashMessage 
  hideStatusBar={false}
  statusBarHeight={StatusBar.currentHeight}
  ...
/>
Ahmed Gaber
  • 3,384
  • 2
  • 12
  • 18