calendart 1.0.4+3 copy "calendart: ^1.0.4+3" to clipboard
calendart: ^1.0.4+3 copied to clipboard

outdated

High customizable Flutter calendar widgets with popup view and multi-columns/rows of months, multi-scroll directions, multi-selections.

Calendart #

About #

High customizable Flutter calendar widgets with popup view and multi-columns/rows of months, multi-scroll directions, multi-selections.

Samples is available here

alt text

Example: #

Scaffold(
  body: Center(
    child: SizedBox(
      width: 300,
      child: ComboContext(
        parameters: ComboParameters(position: PopupPosition.bottomMinMatch),
        child: CalendarContext(
          parameters: CalendarParameters(firstDayOfWeekIndex: 0),
          child: CalendarCombo(
            columns: 2,
            popupSize: const Size(600, 300),
            selection: CalendarSelections.range(
                canSelectExtra: true,
                onSelectedChanged: (range) =>
                    print('from: ${range.from}, to: ${range.to}')),
            placeholder: ListTile(title: Text('Demo Calendar')),
          ),
        ),
      ),
    ),
  ),
);
5
likes
0
pub points
0%
popularity

Publisher

verified publishercreomobile.com

High customizable Flutter calendar widgets with popup view and multi-columns/rows of months, multi-scroll directions, multi-selections.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

combos, flutter

More

Packages that depend on calendart