仅在特定屏幕上显示应用内消息

问题描述 投票:0回答:0

我正在使用@react-native-firebase/in-app-messaging,我希望能够只在特定屏幕上显示消息。我能够让消息正常工作,但消息只会在我启动应用程序时出现,或者根本不会出现。我该怎么做?

我试过了,但我没有得到任何运气

const SomeScreen = () => {
  useEffect(() => {
    inAppMessaging().setMessagesDisplaySuppressed(false);

    return () => {
      inAppMessaging().setMessagesDisplaySuppressed(true);
    };
  }, []);
  ...
}
firebase react-native react-native-firebase firebase-in-app-messaging
© www.soinside.com 2019 - 2024. All rights reserved.