flutter_calendar_widget 0.0.2 copy "flutter_calendar_widget: ^0.0.2" to clipboard
flutter_calendar_widget: ^0.0.2 copied to clipboard

discontinued

Calendar widget for flutter. Highly customizable calendar widget.

example/lib/main.dart

import 'package:example/screens/basic_demo_screen.dart';
import 'package:example/utils/themes.dart';
import 'package:flutter/material.dart';

Future<void> main() async {
  runApp(const MyApp());
}

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      themeMode: ThemeMode.system,
      theme: Themes.light,
      darkTheme: Themes.dark,
      title: 'flutter_calendar_widget demo',
      home: const BasicDemoScreen(),
    );
  }
}
8
likes
140
points
28
downloads

Publisher

verified publisherdooboolab.com

Weekly Downloads

Calendar widget for flutter. Highly customizable calendar widget.

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

collection, flutter, intl

More

Packages that depend on flutter_calendar_widget