Talor-A / react-native-message-bar

A notification bar alert displayed at the top of the screen for react-native
MIT License
55 stars 27 forks source link

Compatibility with RN Modal #27

Closed Xyzor closed 6 years ago

Xyzor commented 6 years ago

Hello!

I'm curious if it's possible to show the message bar on top of an open modal component?

The modal component: https://facebook.github.io/react-native/docs/modal.html

Xyzor commented 6 years ago

I created a demo, to demonstrate the problem. Out of the box, this modul is not compatible with modal.

Demo

Steps to reproduce the issue:

  1. Click on 'Open modal'
  2. Click on 'Show message' (notice, that nothing happens)
  3. Click on 'Close modal' (you can see that the message bar is under the modal)
Talor-A commented 6 years ago

If I remember correctly the react native modal is a native component that opens a new view on top of the current react native view. I'd recommend a JS based solution for your modal instead.