Calendarro
Calendar widget library for Flutter apps. Offers multiple ways to customize the widget.
Getting Started
Installation
Add dependency to your pubspec.yaml:
Basic use
First, add an import to your code:
Add a widget to your code:
Customization
1. Display Mode - If you prefer to operate on multiple rows to see whole month, use:
2. Selection Mode - If you want to select multiple dates, use:
3. Weekday Labels - If you want to provide your own row widget for displaying weekday names, use:
you can create your CustomWeekdayLabelsRow by looking at default CalendarroWeekdayLabelsView.
4. Day Tile Builder - If you want to build day tiles your own way, you can use:
you can create your CustomDayTileBuilder looking upon DefaultDayTileBuilder.
5. Initial selected dates - When you want some dates to be selected from the scratch, use selectedDate (SelectionMode.SINGLE) or selectedDates (SelectionMode.MULTI) arguments:
you can create your CustomDayTileBuilder looking upon DefaultDayTileBuilder.
Selecting date callback
If you want to get a callback when a date tile is clicked, there is onTap param: