flutter_month_range 0.0.1 copy "flutter_month_range: ^0.0.1" to clipboard
flutter_month_range: ^0.0.1 copied to clipboard

A simple and elegant horizontal month range picker widget for Flutter.

flutter_month_range #

A simple, elegant horizontal month-based range picker for Flutter — designed for single month view selection with smooth navigation.

screenshot

Features #

✅ Single month view
✅ Smooth horizontal navigation with arrows
✅ Range highlight between start and end date
✅ Easy integration with showDialog
✅ Lightweight, no dependencies except intl

Installation #

Add to your pubspec.yaml:

dependencies:
  flutter_month_range: ^0.0.1

Usage #

onPressed: () async {
  DateTimeRange? result = await showDialog<DateTimeRange>(
    context: context,
    builder: (context) => CustomDateRangePicker(
      firstDate: DateTime(2022, 1, 1),
      lastDate: DateTime(2030, 12, 31),
    ),
  );

  if (result != null) {
    print('Selected: ${result.start} to ${result.end}');
  }
}

License #

MIT License © Rahul Sharma

1
likes
0
points
40
downloads

Publisher

unverified uploader

Weekly Downloads

A simple and elegant horizontal month range picker widget for Flutter.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, intl

More

Packages that depend on flutter_month_range