animated_calendar 1.0.2 copy "animated_calendar: ^1.0.2" to clipboard
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');
            },
          ),
        ),
      ),
    );
  }
}
1
likes
150
points
14
downloads

Publisher

unverified uploader

Weekly Downloads

A beautiful, animated calendar package for Flutter with a blue-and-white theme.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, intl, table_calendar

More

Packages that depend on animated_calendar