Welcome to the Flutter feedback portal. We’re happy you’re here! If you have feedback on how to improve the Flutter, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote
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,