calintamas / react-native-toast-message

Animated toast message component for React Native
MIT License
1.73k stars 265 forks source link

Toast Not working in with React-native 0.71.8 version #477

Open naman2629 opened 1 year ago

naman2629 commented 1 year ago

Describe the bug A clear and concise description of what the bug is.

Steps to reproduce Steps to reproduce the behavior:

  1. Go to '...'
  2. Tap on '....'
  3. Scroll down to '....'
  4. See error

Expected behavior A clear and concise description of what you expected to happen.

Screenshots If applicable, add screenshots to help explain your problem.

Code sample To help debugging, please add a code sample that reproduces the issue.

Environment (please complete the following information):

Additional context Add any other context about the problem here.

agnimgupta commented 1 year ago

Facing the same error for the said version

dev-fredericfox commented 1 year ago

works with 72.1

RohitDianApps commented 1 year ago

Not working with 72.1

igorrmon commented 1 year ago

not working also in 71.7

fatemehmarzoughi commented 1 year ago

also not working in 0.72.3

hamzaali98 commented 1 year ago

Make sure you're adding the tag as the last child in your app.js file

SophieJung7 commented 1 year ago

Only Android Not working.... at 71.8

wdospinal commented 8 months ago

Refactor app.tsx make it work with this

import Toast from 'react-native-toast-message';

export function App(props) {
  return (
    <>
      {/* ... */}
      <Toast />
    </>
  );
}