MinhCuongIT / table_calendar

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Table Calendar

Pub Package Awesome Flutter

Header will build below the Date Grid. Custom Control On Right and Left Button Tapped in Header.

Installation

Add to pubspec.yaml:

dependencies:
  table_calendar:
    git:
      url: https://github.com/thelazyone11/table_calendar

Then import it to your project:

import 'package:table_calendar/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,
  );
}

About

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

License:Apache License 2.0


Languages

Language:Dart 97.6%Language:Java 1.3%Language:Objective-C 1.1%