You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, first of all really nice job on this package.
I encountered it after I saw your comment on react-native-toast-message, and wheres this solves that issue, your package is not showing on the modal view.
You can render a toast on a modal view, but if you do so the queuing loses track and you can't render the global one.
Maybe I am missing something and it can be done, if so could you provide an example.
If not, I would say that is a very important feature to support.
Thanks again and have a nice day!
The text was updated successfully, but these errors were encountered:
Hey, first of all really nice job on this package.
I encountered it after I saw your comment on react-native-toast-message, and wheres this solves that issue, your package is not showing on the modal view.
You can render a toast on a modal view, but if you do so the queuing loses track and you can't render the global one.
Maybe I am missing something and it can be done, if so could you provide an example.
If not, I would say that is a very important feature to support.
Thanks again and have a nice day!
Hello, thank you.
We are working on this recently, I hope we can make it.
Right now you can wrap Toaster with FullWindowOverlay imported from react-native-screens
import { FullWindowOverlay } from 'react-native-screens';
import Toastable from 'react-native-toastable';
<FullWindowOverlay>
<Toastable />
</FullWindowOverlay>
Hey, first of all really nice job on this package.
I encountered it after I saw your comment on react-native-toast-message, and wheres this solves that issue, your package is not showing on the modal view.
You can render a toast on a modal view, but if you do so the queuing loses track and you can't render the global one.
Maybe I am missing something and it can be done, if so could you provide an example.
If not, I would say that is a very important feature to support.
Thanks again and have a nice day!
The text was updated successfully, but these errors were encountered: