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

Overlapping issue of toast

Open HrideyReact opened this issue 3 years ago • 1 comments

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]

simulator_screenshot_8FF11327-3738-422A-B70B-6CA271B4E78C

HrideyReact avatar Dec 16 '21 10:12 HrideyReact

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>

calintamas avatar Dec 17 '21 21:12 calintamas