我是新的Flutter,我试图创建一个应用程序,将发送给用户的通知,并接受数据库中的数据,即使应用程序被关闭。我有创建通知的代码。
按钮发送通知,我希望在应用程序关闭时自动完成此操作
ElevatedButton(
onPressed: triggerNotification,
child: const Text('Trigger Notification'),
),
通知的创建方式如下:
triggerNotification() {
AwesomeNotifications().createNotification(
content: NotificationContent(
id: 10,
channelKey: 'basic_channel',
//notification name
title: 'Notification name',
//notification content
body: 'Notification content',
),
);
}
1条答案
按热度按时间wrrgggsh1#
我问过同样的question,但我不知道为什么它关闭了。
如果你发现任何想法或解决方案,请通知我。