Display toast over React Navigation Modal #85
Answered
by
arnnis
hanselabreu
asked this question in
Q&A
-
Is there a known way of displaying a toast over a React Navigation Modal? Currently the toast is shown behind the modal. |
Beta Was this translation helpful? Give feedback.
Answered by
arnnis
Aug 8, 2021
Replies: 2 comments 2 replies
-
As explained here since Modal is a native view it goes above anything else, only workaround is to have a |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
hanselabreu
-
Then what's the benefit of using useToast() |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As explained here since Modal is a native view it goes above anything else, only workaround is to have a
<Toast />
component inside the modal itself.