Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/pinkfish/flutter_calendar

Calendar widget for flutter
https://github.com/pinkfish/flutter_calendar

Last synced: about 2 months ago
JSON representation

Calendar widget for flutter

Lists

README

        

# Calendar

Shows a scrolling calendar list of events. This is still relatively basic, it always
assumes that the getEvents returns the entire list of calendar events (mostly ignoring
the values passed into the source). It does work however :) Optionally, you can use an
image as a background for the calendar header and another image for the month header.

The calendar uses slivers to display the widgets in the view and lets you scroll forward
and backward through the events. The header widget will drop down and open up the days of
the month, letting you select specific days as well as move back and forth between the months.
By default it displays a list of events and not a day view, the day view code is all just a
stub right now.

Here is how to use the calendar widget itself:

```
new CalendarWidget(
initialDate: new TZDateTime.now(local),
buildItem: buildItem,
getEvents: getEvents,
);
```

How to setup a source for the calendar widget.
```
...
List _listToShow;
StreamSubscription _listening;

@override
Widget buildItem(BuildContext context, CalendarEvent event) {
return new GameCard(_listToShow[event.index]);
}

@override
List getEvents(DateTime start, DateTime end) {
if (_listToShow == null) {
_listToShow = UserDatabaseData.instance.games.values.toList();
}
if (_listToShow == null) {
return [];
}
List events = new List();
int pos = 0;
_listToShow.forEach((Game g) => events.add(new CalendarEvent(
instant: g.tzTime, instantEnd: g.tzEndTime, index: pos++)));
return events;
}
...
```

Example of the calendar widget in action:

## Getting Started

For help getting started with Flutter, view our online [documentation](https://flutter.io/).

For help on editing package code, view the [documentation](https://flutter.io/developing-packages/).