simple_vertical_calendar 1.1.0 copy "simple_vertical_calendar: ^1.1.0" to clipboard
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);
    },
),

15
likes
120
pub points
58%
popularity

Publisher

unverified uploader

This package contain widget for building a Vertical Scroll Calendar widget that is similar to the one use in AirBnB.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, intl

More

Packages that depend on simple_vertical_calendar