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

Toast Not working in with React-native 0.71.8 version

Open naman2629 opened this issue 1 year ago • 8 comments

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):

  • OS: [iOS, Android, Web]
  • react-native-toast-message version: [e.g. v2.0.0]
  • react-native version [e.g. v0.65.0]

Additional context Add any other context about the problem here.

naman2629 avatar Jun 25 '23 20:06 naman2629

Facing the same error for the said version

agnimgupta avatar Jul 03 '23 10:07 agnimgupta

works with 72.1

dev-fredericfox avatar Jul 04 '23 23:07 dev-fredericfox

Not working with 72.1

RohitDianApps avatar Jul 23 '23 10:07 RohitDianApps

not working also in 71.7

igorrmon avatar Jul 25 '23 04:07 igorrmon

also not working in 0.72.3

fatemehmarzoughi avatar Jul 31 '23 15:07 fatemehmarzoughi

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

hamzaali98 avatar Aug 28 '23 11:08 hamzaali98

Only Android Not working.... at 71.8

SophieJung7 avatar Aug 30 '23 09:08 SophieJung7

Refactor app.tsx make it work with this

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

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

wdospinal avatar Mar 14 '24 17:03 wdospinal