Skip to content
Jacopo Carlini edited this page Jun 4, 2020 · 2 revisions

This state have the information about the list of event, the selected day and more.

  final List<Event> events;
  final SplayTreeMap<DateTime, List<Event>> eventMapped;
  final Event showEvent;
  final DateTime selectedDay;

eventMapped is a sorted map in which the key is the day with some event and the value is the list of events for that day.

events is the list of all the events. (Actually this information is duplicated in eventMapped).

showEvent is the event showed in the detailed page. It is the event focused by user.

selectedDay is the day focused by user.

Clone this wiki locally