add_to_calendar 1.0.0 copy "add_to_calendar: ^1.0.0" to clipboard
add_to_calendar: ^1.0.0 copied to clipboard

outdated

A Flutter plugin that allows opening a native UI to add an event with custom parameters to user calendar

example/lib/main.dart

import 'package:add_to_calendar/add_to_calendar.dart';
import 'package:flutter/material.dart';
import 'package:datetime_picker_formfield/datetime_picker_formfield.dart';
import 'package:intl/intl.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(home: _Home());
  }
}

class _Home extends StatefulWidget {
  @override
  _HomeState createState() => _HomeState();
}

class _HomeState extends State<_Home> {
  String title = '';
  String location = '';
  String description = '';
  DateTime startDate;
  DateTime endDate;
  TextEditingController endDateController = TextEditingController();
  bool allDay = false;

  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Add to calendar Plugin Demo'),
        ),
        body: Padding(
          padding: const EdgeInsets.all(24.0),
          child: SingleChildScrollView(
            child: Column(
              crossAxisAlignment: CrossAxisAlignment.start,
              children: <Widget>[
                TextField(
                  decoration: const InputDecoration(
                    labelText: 'Event title:',
                  ),
                  onChanged: (String value) => setState(() {
                        title = value;
                      }),
                ),
                TextField(
                  decoration: const InputDecoration(
                    labelText: 'Event description: (Optional)',
                  ),
                  onChanged: (String value) => setState(() {
                    description = value;
                  }),
                ),
                TextField(
                  decoration: const InputDecoration(
                    labelText: 'Event location: (Optional)',
                  ),
                  onChanged: (String value) => setState(() {
                        location = value;
                      }),
                ),
                DateTimePickerFormField(
                  inputType: InputType.both,
                  format: DateFormat("EEEE, MMMM d, yyyy 'at' h:mma"),
                  editable: true,
                  decoration: InputDecoration(labelText: 'Start Time', hasFloatingPlaceholder: true),
                  onChanged: (dt) {
                    setState(() => startDate = dt);
                  },
                ),
                DateTimePickerFormField(
                  inputType: InputType.both,
                  initialDate: startDate,
                  format: DateFormat("EEEE, MMMM d, yyyy 'at' h:mma"),
                  editable: true,
                  decoration: InputDecoration(labelText: 'End Time', hasFloatingPlaceholder: false),
                  controller: endDateController,
                  onChanged: (dt) {
                    setState(() => endDate = dt);
                  },
                ),
                Row(
                  children: [
                    Text('All day'),
                    Checkbox(
                      value: allDay,
                      onChanged: (checked) {
                        setState(() {
                          endDate = null;
                          endDateController.clear();
                          allDay = checked;
                        });
                      },
                    ),
                  ],
                ),
                RaisedButton(
                  child: const Text('Add to calendar'),
                  onPressed: title.isEmpty || startDate == null
                      ? null
                      : () {
                          return AddToCalendar.addToCalendar(
                            title: title,
                            startTime: startDate,
                            endTime: endDate,
                            location: location,
                            description: description,
                            isAllDay: allDay == true ? true : null,
                          );
                        },
                )
              ],
            ),
          ),
        ),
      ),
    );
  }
}
8
likes
0
pub points
37%
popularity

Publisher

unverified uploader

A Flutter plugin that allows opening a native UI to add an event with custom parameters to user calendar

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, meta

More

Packages that depend on add_to_calendar