easy_calendar_picker

Creator: coderz1093

Last updated:

0 purchases

easy_calendar_picker Image
easy_calendar_picker Images

Languages

Categories

Add to Cart

Description:

easy calendar picker

Easy Calendar Picker #

A simple and customizable calendar picker for Flutter.
Features #

✅ Select single dates
✅ Select date ranges
❌ Customize appearance (pending)
❌ Localization support (pending)

Installation #
Add the following to your pubspec.yaml:
dependencies:
easy_calendar_picker: ^0.1.3
copied to clipboard
Then run flutter pub get.
Usage #
Import the package:
import 'package:easy_calendar_picker/easy_calendar_picker.dart';
copied to clipboard
Single Date Picker #
showBottomCalendarPicker(
context,
labelConfig: LabelConfiguration(name: 'App Calendar', textStyle: const TextStyle(fontSize: 18)),
pickType: CalendarPickerType.single,
onTapDate: (val) {},
);
copied to clipboard
Date Range Picker #
showBottomCalendarPicker(
context,
labelConfig: LabelConfiguration(name: 'App Calendar', textStyle: const TextStyle(fontSize: 18)),
pickType: CalendarPickerType.range,
onRangeChanged: (fromDate, toDate) {},
);
copied to clipboard
Maintainers #

tungdo

Contributions #
Contributions are welcome! Please open an issue or submit a pull request.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.