I have a really simple and strange question. I have this line of code:
useEffect(() => {
ToastAndroid.show("Test", ToastAndroid.LONG);
}, []);
My expected result is to see a toast when the page is loading. But it doesn't happen. Neither on the simulator nor the real cellphone.
Any idea what's the possible issues?