Last updated:
0 purchases
simple vertical calendar
simple_vertical_calendar #
This package contain widget for building a Vertical Scroll Calendar widget that is similar to the one use in AirBnB.
This widget is design to be highly customizable. You can change any section of the widget to your like.
installing #
add this library to your pubspec.yaml
simple_vertical_calendar: ^1.1.0
copied to clipboard
Using this widget,
SimpleVerticalCalendar(
numOfMonth: 6,
headerStyle: HeaderStyle(
titleTextStyle: TextStyle(
color: Colors.black,
fontSize: 20,
fontWeight: FontWeight.bold,
),
textAlgin: TextAlign.left,
monthFormat: MonthFormats.FULL,
),
calendarOption: CalendarOptions.RANGE_SELECTION, // [RANGE_SELECTION, SINGLE]
dayOfWeekHeaderStyle: DayOfWeekHeaderStyle(),
dayStyle: DayHeaderStyle(
textColor: Colors.black,
unavailableTextColor: Colors.pink,
),
onDateTap: (start, end) {
print(start);
print(end);
},
),
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.