flutter_calendar_widget 0.0.2
flutter_calendar_widget: ^0.0.2 copied to clipboard
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(),
);
}
}