animated_calendar 1.0.2
animated_calendar: ^1.0.2 copied to clipboard
A beautiful, animated calendar package for Flutter with a blue-and-white theme.
example/animated_calendar_example.dart
import 'package:animated_calendar/animated_calendar.dart';
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('Animated Calendar Example'),
),
body: Center(
child: AnimatedCalendar(
initialDate: DateTime.now(),
onDateChanged: (date) {
print('Selected date: $date');
},
),
),
),
);
}
}