d-apps / awesome_calendar

An easy-to-use and customizable calendar for Flutter. It allows single, multi, and range selection

Home Page:https://pub.dev/packages/awesome_calendar

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Awesome Calendar

An easy to use and customizable calendar for Flutter.

The calendar can be used with the provided AlertDialog or as a Widget embedded the way you want. It allows single, multi and range selection.

Basic usage

final List<DateTime>? picked = await showDialog<List<DateTime>>(
  context: context,
  builder: (BuildContext context) {
    return const AwesomeCalendarDialog(
      selectionMode: SelectionMode.MULTI,
      canToggleRangeSelection: true,
    );
  },
);

Check out examples to see more usage samples

The dates are translated automatically according to your Intl.defaultLocale value, the other string values can be overriden in the constructor.

Found this project useful? ❤️

If you found this project useful, then please consider giving it a ⭐️ on Github: https://github.com/molteo-engineering-team/awesome_calendar

Issues and feedback 💭

If you have any suggestions for including a feature or if something doesn't work, feel free to open a Github issue or to open a pull request, you are more than welcome to contribute!

About

An easy-to-use and customizable calendar for Flutter. It allows single, multi, and range selection

https://pub.dev/packages/awesome_calendar

License:MIT License


Languages

Language:Dart 88.5%Language:HTML 10.0%Language:Swift 1.1%Language:Kotlin 0.3%Language:Objective-C 0.1%