simple_vertical_calendar 1.1.0 simple_vertical_calendar: ^1.1.0 copied to clipboard
This package contain widget for building a Vertical Scroll Calendar widget that is similar to the one use in AirBnB.
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
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);
},
),