简体   繁体   中英

How i can see pending notifications on Flutter local notifications?

I can schedule notification, but i want see pending notifications actives. It is possible? Where flutter store time of notifications to show?

ex:

notifications.periodicallyShow(id, title, body, RepeatInterval.EveryMinute, _ongoing);

I want see where is 'RepeatInterval' value is stored

您可以使用pendingNotificationRequests获取待处理的通知:

var pendingNotificationRequests = await flutterLocalNotificationsPlugin.pendingNotificationRequests();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM