我已经建立了一个Android应用程序与颤振,并集成了firebase消息应用程序。
我遇到了一个问题,如果Android设备在应用程序关闭时收到通知,那么该通知将无限地启动。
我打开了一个问题,但希望有人解决了问题(或知道原因)。
我试过移动下面的代码,但仍然看到相同的结果。即使在设备上重新安装,我仍然会看到问题。
以前有人见过这个吗?

@override
void initState() {
  super.initState();

  /// Navigate to item based on message type
  ///
  void _navigateToItemDetail(Map<String, dynamic> message) {
    if (message.containsKey("type")) {
      // handle messages by type
      String type = message["type"];
      String _id = message["_id"] ?? "";
      switch (type) {
        case "private_message":
          Application.router.navigateTo(context, "/private_message/$_id");
          break;
        case "announcement":
          FlutterWebBrowser.openWebPage(
            url: message["url"] ?? "https://me.app",
            androidToolbarColor: Colors.red
          );
          break;
        case "public_message":
          Application.router.navigateTo(context, "/public_message/$_id");
          break;
        default:
      }
    }
  }

  Future<Null> _showItemDialog(Map<String, dynamic> message, BuildContext ctx) async {
    return showDialog<Null>(
      context: ctx,
      barrierDismissible: false, // user must tap button!
      builder: (BuildContext context) {
        return new AlertDialog(
          title: new Text(
            'New Notification!',
            style: new TextStyle(
              fontWeight: FontWeight.w800,
            )
          ),
          content: new SingleChildScrollView(
            child: new ListBody(
              children: <Widget>[
                new Text(message["summary"] ?? "You have a message"),
              ],
            ),
          ),
          actions: <Widget>[
            new FlatButton(
              textColor: Colors.red[900],
              child: new Text(
                "View",
                style: new TextStyle(fontFamily: "Roboto")
              ),
              onPressed: () {
                _navigateToItemDetail(message);
                Navigator.pop(context);
              }
            ),
            new FlatButton(
              textColor: Colors.red[900],
              child: new Text('Ignore', style: new TextStyle(fontFamily: "Roboto")),
              onPressed: () {
                Navigator.pop(context);
              },
            ),
          ],
        );
      },
    ).then((shs) {
      print("$shs results");
    });
  }

  _firebaseMessaging.configure(
    onMessage: (Map<String, dynamic> message) {
      print("onMessage: $message");
      _showItemDialog(message, context);
    },
    onLaunch: (Map<String, dynamic> message) {
      print("onLaunch: $message");
      _navigateToItemDetail(message);
    },
    onResume: (Map<String, dynamic> message) {
      print("onResume: $message");
      _navigateToItemDetail(message);
    },
  );
}

最佳答案

问题不在于FireBase消息。
对于其他在这里发现自己的人:
我有一个基于颤振演示的BottomNavigation我正在导航到相同的,这导致了无限的导航循环。

10-07 22:19