edit_calendar_event_view 0.1.4+7 copy "edit_calendar_event_view: ^0.1.4+7" to clipboard
edit_calendar_event_view: ^0.1.4+7 copied to clipboard

Opens native edit calendar event view

Add and edit calendar events #

pub package

Opens native iOS event viewController to add or edit calendar events.

iOS
Support 11.0+

The example app running in iOS

Installation #

First, add edit_calendar_event_view as a dependency in your pubspec.yaml file.

iOS #

Add the NSCalendarsUsageDescription permissions to your app's Info.plist file, located in <project root>/ios/Runner/Info.plist. See Apple's documentation to determine the right combination of entries for your use case and supported iOS versions.

Usage #

import 'package:edit_calendar_event_view/edit_calendar_event_view.dart';

final newEventId = await EditCalendarEventView.addOrEditCalendarEvent(title: "exampleTitle", calendarId: "0123456789", description: "exampleDescription", startDate: DateTime.now(), endDate: DateTime.now().add(Duration(days: 1), allDay: true);
       
final editedEventId = await EditCalendarEventView.addOrEditCalendarEvent(eventId: this.eventId);

Example #

import 'package:edit_calendar_event_view/edit_calendar_event_view.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {

  String? eventId;

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Add/Edit Event Example'),
        ),
        body: Center(
          child: Padding(
            padding: const EdgeInsets.all(16.0),
            child: Column(
              mainAxisSize: MainAxisSize.min,
              children: [
                ElevatedButton(
                  onPressed: () async {
                    final eventId = await EditCalendarEventView.addOrEditCalendarEvent(title: "exampleTitle");
                    setState(() {
                      this.eventId = eventId;
                    });
                  },
                  child: Text('Add event'),
                ),
                if (eventId != null)
                ElevatedButton(
                  onPressed: () async {
                    final eventId = await EditCalendarEventView.addOrEditCalendarEvent(eventId: this.eventId);
                    setState(() {
                      this.eventId = eventId;
                    });
                  },
                  child: Padding(
                    padding: const EdgeInsets.all(4.0),
                    child: Text('Edit event\n$eventId',
                    textAlign: TextAlign.center),
                  ),
                ),
              ],
            ),
          ),
      ),
    ));
  }
}
3
likes
0
points
1
downloads

Publisher

verified publisherc-wolf.dev

Weekly Downloads

Opens native edit calendar event view

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on edit_calendar_event_view