我正在做一个水提醒,需要在上午8点,下午12点,下午4点和晚上8点发送通知。
这是我的代码,当我单击通知按钮时,它工作正常,我唯一的问题是重复,我不知道如何做我想做的事情,即使在做研究之后。
await AwesomeNotifications().createNotification(
content: NotificationContent(
id: id,
channelKey: 'high_importance_channel',
title: title,
body: body,
actionType: actionType,
notificationLayout: notificationLayout,
summary: summary,
category: category,
payload: payload,
bigPicture: bigPicture,
),
actionButtons: actionButtons,
schedule: scheduled ? NotificationInterval(
interval: interval,
timeZone: await AwesomeNotifications().getLocalTimeZoneIdentifier(),
preciseAlarm: true,
)
: null,
);
字符串
1条答案
按热度按时间vuv7lop31#
我找到了一个解决这个问题的方法,即在所需的时间调用不同的通知方法
字符串
并使用onChange函数调用各个方法。