yegobox_flutter_calendar 1.0.0 copy "yegobox_flutter_calendar: ^1.0.0" to clipboard
yegobox_flutter_calendar: ^1.0.0 copied to clipboard

A calendar widget that uses Material Design.

flutter_calendar #

A calendar widget for Flutter Apps.

Borrowed DateTime utility functions from the Tzolkin Calendar web element.

Usage #

Add to your pubspec dependencies:

    flutter_calendar: ^0.0.1

Render the map with one of three options:

1. Default, Material Design

new Calendar()

standard view


2. An Expandable Map

new Calendar(
  isExpandable: true;
)

expanded view


3. Customize It (Standard or Expandable)

new Calendar(
  // A builder function that renders each calendar tile how you'd like.
  dayBuilder: (BuildContext context, DateTime day) {
      return new Text("!");
  },
)

day builder


API #

// Three optional params:
final VoidCallback onDateSelected;
final bool isExpandable;
final Widget dayBuilder;
2
likes
25
pub points
0%
popularity

Publisher

unverified uploader

A calendar widget that uses Material Design.

Repository (GitHub)
View/report issues

License

BSD-2-Clause (LICENSE)

Dependencies

date_utils, flutter, intl, tuple

More

Packages that depend on yegobox_flutter_calendar