flutter_calendar

Creator: coderz1093

Last updated:

Add to Cart

Description:

flutter calendar

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
copied to clipboard
Render the map with one of three options:
1. Default, Material Design
new Calendar()
copied to clipboard


2. An Expandable Map
new Calendar(
isExpandable: true;
)
copied to clipboard


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("!");
},
)
copied to clipboard


API #
// Three optional params:
final VoidCallback onDateSelected;
final bool isExpandable;
final Widget dayBuilder;
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.