mikemimik / flutter-calendar

A Calendar Widget for flutter
Other
41 stars 12 forks source link

calendar

A flutter widget to display a calendar with some events.

flutter-calendar-calendar view flutter-calendar-event view flutter-calendar-funcational-demo

Event Data Structure

The structure of the data returned from the API (currently) is as follows:

{
    "id": int,
    "title": String,
    "url": String,
    "date_start": DateTime,
    "date_end": DateTime,
    "details": Object
}