Firebase 消息传递:无限启动循环



我已经用Flutter构建了一个Android应用程序,并在该应用程序上集成了Firebase Messaging 。

我一直遇到一个问题,如果Android设备在应用程序关闭时收到通知; 该通知将无限onLaunch启动。

我打开了一个问题github::flutter/flutter/issues/18524,但希望有人解决了问题(或知道原因(。

我尝试移动下面的代码,但仍然看到相同的结果。即使在设备上全新安装后,我仍然看到问题。

以前有人遇到过这种情况吗?

@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 Messaging。

对于其他在这里的人:

我有一个基于 Flutter 演示的BottomNavigation。我正在导航到同一个BottomNavigation,这导致了无限的导航循环。

相关内容

  • 没有找到相关文章

最新更新