flutter_advanced_calendar 0.0.6 copy "flutter_advanced_calendar: ^0.0.6" to clipboard
flutter_advanced_calendar: ^0.0.6 copied to clipboard

outdated

An advanced calendar provides a rich API for widget customization that opens a new look and feel in your app.

flutter_advanced_calendar #

An advanced calendar provides a rich API for widget customization that opens a new look and feel in your app.

Advanced Calendar Theme LAF #

Advanced Calendar Light Theme Advanced Calendar Dark Theme
PREVIEW_LIGHT_COLLAPSED PREVIEW_DARK_COLLAPSED
PREVIEW_LIGHT_EXPANDED PREVIEW_DARK_EXPANDED

Examples #

Regular Calendar

final _controller = AdvancedCalendarController.today();
// ...
AdvancedCalendar(
    controller: _controller,
)
// ...

Custom Date Calendar

final _controller = AdvancedCalendarController.custom(DateTime(2021, 2, 15));
// ...
AdvancedCalendar(
    controller: _controller,
)
// ...

AdvancedCalendar Parameters #

Parameter Description Type Default
controller Controller that manage calendar state AdvancedCalendarController required
weekLineHeight Height of week line double 32.0
preloadMonthViewAmount Amount of months in month view to preload int 13
preloadWeekViewAmount Amount of weeks in week view to preload int 21
weeksInMonthViewAmount Weeks lines amount in month view int 6
56
likes
40
pub points
89%
popularity

Publisher

verified publisheralexmelnyk.io

An advanced calendar provides a rich API for widget customization that opens a new look and feel in your app.

Repository (GitHub)
View/report issues

Documentation

Documentation

License

MIT (LICENSE)

Dependencies

flutter, intl

More

Packages that depend on flutter_advanced_calendar