flutter_calendar_pro 1.0.0
flutter_calendar_pro: ^1.0.0 copied to clipboard
A highly customizable, feature-rich calendar package with event management, recurrence, multi-day events, and multiple view types.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:flutter_calendar_pro/flutter_calendar_pro.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Calendar Pro Examples',
theme: ThemeData(
primarySwatch: Colors.blue,
useMaterial3: true,
),
debugShowCheckedModeBanner: false,
home: Scaffold(
appBar: AppBar(
title: const Text('Basic Month View'),
backgroundColor: Colors.blue,
foregroundColor: Colors.white,
),
body: AdvancedCalendar(
controller: CalendarController(),
),
), // Test the basic example
);
}
}