react-native-root-toast
react-native-root-toast copied to clipboard
react native toast like component, pure javascript solution
The updates gives opportunity to display any content inside the Toast component, not only Text
AppRegistry.registerComponent("xx", () => xx); AppRegistry.registerComponent("yy", () => yy); in this case ,when i am only in xx ,it is work ok. but when i am from xx to yy, then...
Hello, The below segment of code does not trigger a fade-out animation ``` setTimeout(() => { Toast.hide(toast); }, 2000); ``` Can you please fix this our show me how to...
This PR allows to use a custom component instead a message on the toast. Its based on the very last version of the component and the code footprint is really...
Hello, i'm facing a little error here on your library.  I have to view a login form and a sign in form. Form login to sign in, no problem,...
After importing I get an warning that says: **Accessing view manager configs directly off uimanager via uimanager UIManager['getConstants'] is no longer supported** Screenshot: 
Toast show will delay 2000ms when 'Debug Remote Js ' is Started in Android emulator ``` Toast.show('Hello Toast') ```
Hi,Thank you for developed this component. when the toast is show , I hope page can not be click
Currently doing multiple Toast.show(...) will make them overlap each other. There should be a queue that manages how they are shown on the screen so as one fades out the...