Reputation: 767
I want to recreate this small and discrete dialog box on the image below using React Native. I can find this component when I set an Alarm or copy some text to clipboard on my Android Phone. But I couldn't discover its name to start some research.
Upvotes: 0
Views: 215
Reputation: 16334
You are looking for the Toast in Android which is available in react-native
You can refer the docs here https://reactnative.dev/docs/toastandroid
The out of the box feature of React Native is only available in Android
If you want to use this in IOS and Android you can use a library like below. https://www.npmjs.com/package/react-native-simple-toast
Upvotes: 3