device_calendar 4.3.2 copy "device_calendar: ^4.3.2" to clipboard
device_calendar: ^4.3.2 copied to clipboard

A cross platform plugin for modifying calendars on the user's device.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'common/app_routes.dart';
import 'presentation/pages/calendars.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> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData(),
      themeMode: ThemeMode.system,
      darkTheme: ThemeData.dark(),
      routes: {
        AppRoutes.calendars: (context) {
          return const CalendarsPage(key: Key('calendarsPage'));
        }
      },
    );
  }
}
212
likes
130
pub points
96%
popularity

Publisher

verified publisherbuilttoroam.com

A cross platform plugin for modifying calendars on the user's device.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

collection, flutter, sprintf, timezone

More

Packages that depend on device_calendar