calendart 1.0.7 copy "calendart: ^1.0.7" to clipboard
calendart: ^1.0.7 copied to clipboard

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.

Install instructions

Docs

Online Samples

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
40
pub points
1%
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

BSD-3-Clause (LICENSE)

Dependencies

combos, flutter

More

Packages that depend on calendart