After performing a setState() refresh, the workWeek view does not start on the initialDisplayDate using the code below.
Note that minDate is set to the date of the event returned in the onTap() callback, at the end of which the setState() refresh is called.
Instead, the initialDisplayDate falls back to current date.
child: SfCalendar( firstDayOfWeek: 1,
// maxDate: DateTime.now().add(Duration(days: 60)),
// minDate: DateTime.now(),
initialDisplayDate: minDate,
initialSelectedDate: minDate,
view: CalendarView.workWeek,
showDatePickerButton: false,
showNavigationArrow: true,
allowViewNavigation: true,
dataSource: dataSource,