flutter_calendar_pro 1.0.0 copy "flutter_calendar_pro: ^1.0.0" to clipboard
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
    );
  }
}
2
likes
0
points
120
downloads

Publisher

unverified uploader

Weekly Downloads

A highly customizable, feature-rich calendar package with event management, recurrence, multi-day events, and multiple view types.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, intl

More

Packages that depend on flutter_calendar_pro