在颤动中创建日历提醒

问题描述 投票:-2回答:1

我是新来的人。最近我正在做一个应用程序,其主要功能是添加提醒日历。我现在使用“device_calendar”包将事件添加到日历应用程序中,问题是我可以创建一个事件,但我无法创建事件提醒。例如,我在下午4:30创建了一个活动,我只能在日历应用程序中看到它,它不会在下午4:30到达时提醒我,这会给您带来很多不便。有人可以告诉我如何使用“device_calendar”包添加提醒,或者告诉我一些有关将事件和提醒添加到日历应用程序中的方法。提前致谢!

android flutter
1个回答
1
投票

我想你可以用flutter_local_notification来处理

安排本地通知:

var scheduledNotificationDateTime =
        new DateTime.now().add(new Duration(seconds: 5));
var androidPlatformChannelSpecifics =
    new AndroidNotificationDetails('your other channel id',
        'your other channel name', 'your other channel description');
var iOSPlatformChannelSpecifics =
    new IOSNotificationDetails();
NotificationDetails platformChannelSpecifics = new NotificationDetails(
    androidPlatformChannelSpecifics, iOSPlatformChannelSpecifics);
await flutterLocalNotificationsPlugin.schedule(
    0,
    'scheduled title',
    'scheduled body',
    scheduledNotificationDateTime,
    platformChannelSpecifics);

© www.soinside.com 2019 - 2024. All rights reserved.