用于后台处理的抖动问题
在应用程序关闭时如何显示来自sqlite的本地通知?
答案 0 :(得分:1)
尝试使用flutter_local_notifications中的代码段sample example app。
Future<void> _showNotification() async {
var androidPlatformChannelSpecifics = AndroidNotificationDetails(
'your channel id', 'your channel name', 'your channel description',
importance: Importance.Max, priority: Priority.High, ticker: 'ticker');
var iOSPlatformChannelSpecifics = IOSNotificationDetails();
var platformChannelSpecifics = NotificationDetails(
androidPlatformChannelSpecifics, iOSPlatformChannelSpecifics);
await flutterLocalNotificationsPlugin.show(
0, 'plain title', 'plain body', platformChannelSpecifics,
payload: 'item x');
}
它还可以选择安排通知,并根据单击的通知进行路由。