react-native-root-toast icon indicating copy to clipboard operation
react-native-root-toast copied to clipboard

react native toast like component, pure javascript solution

Results 100 react-native-root-toast issues
Sort by recently updated
recently updated
newest added

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. ![image](https://user-images.githubusercontent.com/9827392/62413502-f30d2380-b60f-11e9-9724-b13594b2d3ff.png) 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: ![image](https://user-images.githubusercontent.com/52161333/65419443-3f672980-de31-11e9-9a9c-3ed92c0be26e.png)

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...