table_calendar_null_safe 2.0.0 copy "table_calendar_null_safe: ^2.0.0" to clipboard
table_calendar_null_safe: ^2.0.0 copied to clipboard

Highly customizable, feature-packed Flutter Calendar with gestures, animations and multiple formats.

Table Calendar with Null safety and calendarController #

Features #

  • Extensive, yet easy to use API
  • Custom Builders for truly flexible UI
  • Complete programmatic control with CalendarController
  • Dynamic events
  • Interface for holidays
  • Locale support
  • Vertical autosizing
  • Beautiful animations
  • Gesture handling
  • Multiple Calendar formats
  • Multiple days of the week formats
  • Specifying available date range
  • Nice, configurable UI out of the box

Installation #

Add to pubspec.yaml:

dependencies:
  table_calendar_null_safe: ^2.0.0

Then import it to your project:

import 'package:table_calendar_null_safe/table_calendar.dart';

And finally create the TableCalendar with a CalendarController:

@override
void initState() {
  super.initState();
  _calendarController = CalendarController();
}

@override
void dispose() {
  _calendarController.dispose();
  super.dispose();
}

@override
Widget build(BuildContext context) {
  return TableCalendar(
    calendarController: _calendarController,
  );
}

Locale #

Table Calendar supports locales. To display the Calendar in desired language, use locale property. If you don't specify it, a default locale will be used.

1
likes
110
pub points
81%
popularity

Publisher

verified publisherdvmatyun.ru

Highly customizable, feature-packed Flutter Calendar with gestures, animations and multiple formats.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter, intl, simple_gesture_detector

More

Packages that depend on table_calendar_null_safe