device_calendar 4.2.0-1693148588 copy "device_calendar: ^4.2.0-1693148588" to clipboard
device_calendar: ^4.2.0-1693148588 copied to clipboard

outdated

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(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      routes: {
        AppRoutes.calendars: (context) {
          return CalendarsPage(key: Key('calendarsPage'));
        }
      },
    );
  }
}
255
likes
0
points
104k
downloads

Publisher

verified publisherbuilttoroam.com

Weekly Downloads

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

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

collection, flutter, flutter_native_timezone, sprintf, timezone

More

Packages that depend on device_calendar