flutter_grid_calendar 1.0.0 copy "flutter_grid_calendar: ^1.0.0" to clipboard
flutter_grid_calendar: ^1.0.0 copied to clipboard

A modern, interactive calendar widget for Flutter.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_grid_calendar/flutter_grid_calendar.dart';

void main() {
  runApp(
    MaterialApp(
      home: Scaffold(
        body: Container(
          alignment: Alignment.center,
          margin: EdgeInsets.all(16),
          child: CalendarWidget(
            onDateSelected: (selectedDate) {
              print('Selected date: $selectedDate');
              // Do something with the selected date
            },
            initialDate: DateTime.now(),
            primaryColor: Colors.deepPurple,
            secondaryColor: Colors.amber,
          ),
        ),
      ),
    ),
  );
}
2
likes
140
points
15
downloads

Publisher

verified publisherdevtech365.com

Weekly Downloads

A modern, interactive calendar widget for Flutter.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, intl

More

Packages that depend on flutter_grid_calendar