react-native-toast-message
react-native-toast-message copied to clipboard
Overlapping issue of toast
Steps to reproduce the behavior:
Add a view inside modal. Add toast '' inside the view Display toast Environment (please complete the following information):
OS: [iOS, Android] react-native-toast-message version: [e.g. v2.0.0] react-native version [e.g. v0.65.0]
Hi @HrideyReact, can you add the code to reproduce it (or just to get an idea)?
Also, you should probably have the <Toast />
instance alongside the View
container that wraps your modal:
<Modal>
<View>
{/* content */}
</View>
<Toast />
</Modal>