I am using @react-native-firebase/in-app-messaging, and I want to be able to display the message only in a specific screen. I am able to get the messaging to work, but messaging will only appear when I launch the app, or it will not appear at all. How can I do that?
I tried this, but I am not getting any luck with this
const SomeScreen = () => {
useEffect(() => {
inAppMessaging().setMessagesDisplaySuppressed(false);
return () => {
inAppMessaging().setMessagesDisplaySuppressed(true);
};
}, []);
...
}