问题描述
我正在使用 flutter_local_notifications 在每天的特定时间安排通知。
用户可以选择不同的时区,它适用于Android但不适用于iOS,因为我没有使用iOS的经验,我不知道它如何处理通知。
Future<void> _showNotification(
BuildContext? context,NotificationDetails platformChannelSpecifics,Prayer prayer,DateTime dateTime) async {// dateTime is the time in another time zone,and time is the time passed to the zonedScheduled method
var time = _nextInstanceOfPrayer(dateTime);
if (time == null) {
return;
}
await FlutterlocalnotificationsPlugin.zonedSchedule(
_getId(time,prayer: prayer.toString()),prayer.toStr(context!),_getPrayerText(prayer.toStr(context)),time,platformChannelSpecifics,androidAllowWhileIdle: true,uilocalnotificationDateInterpretation:
UIlocalnotificationDateInterpretation.absoluteTime,);}
tzZone.TZDateTime? _nextInstanceOfPrayer(DateTime dateTime) {
final DateTime Now = DateTime.Now();
//converts time to specific location
tzZone.TZDateTime scheduledDate = tzZone.TZDateTime.from(
dateTime.subtract(Now.timeZoneOffset),tzZone.UTC,);
if (scheduledDate.toUtc().isBefore(Now.toUtc())) {
return null;
}
return scheduledDate;}
我正在尝试的是在手机本地时间的时间(时间)添加通知, 例如,用户选择+5 GMT 时区(5:00PM),本地时区是说+2 GMT(2:00PM),我想添加本地时间(5:00PM +5 GMT) 并在 (5:00 +2 GMT) 显示。
我尝试将两个时间都转换为 UTC 并在 UTC 上显示通知 - 本地时区(如第二个代码所示),代码显示有待处理的通知,但是当我更改设备的时间时,它没有' t 显示任何内容。
DateTime.Now().add(Duration(seconds: 5));
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)