add_2_calendar 1.1.0 add_2_calendar: ^1.1.0 copied to clipboard
A really simple Flutter plugin to add events to each platform's default calendar.
add_2_calendar #
A really simple Flutter plugin to add events to each platform's default calendar.
Installation #
In your pubspec.yaml
file within your Flutter Project:
dependencies:
add_2_calendar: ^1.1.0
iOS integration #
In order to make this plugin work on iOS 10+, be sure to add this to your info.plist
file:
<key>NSCalendarsUsageDescription</key>
<string>INSERT_REASON_HERE</string>
Use it #
import 'package:add_2_calendar/add_2_calendar.dart';
final Event event = Event(
title: 'Event title',
description: 'Event description',
location: 'Event location',
startDate: DateTime(/* Some date here */),
endDate: DateTime(/* Some date here */),
);
...
Add2Calendar.addEvent2Cal(event);
...
Example #
Please run the app in the example/
folder to start playing!