I am trying to achieve a schedule view of a 24 hours cycle. How do I achieve it using SyncFusion Calendar, Day view ?
I would like to display the view from 8am to the next day's 8am (24 hours)
My current code is as of below, please advice on what I can do, thank you so much in advance !
SfCalendar(
//headerHeight: 100.0,
//view: CalendarView.day,
view:CalendarView.day,
backgroundColor:Colors.transparent,
blackoutDatesTextStyle:constTextStyle(color:Colors.white),
todayTextStyle:constTextStyle(color:Colors.white),
cellBorderColor:Colors.grey,
headerStyle:constCalendarHeaderStyle(
textStyle:TextStyle(color:Colors.amber),
),
timeSlotViewSettings:constTimeSlotViewSettings(
startHour:7,
endHour:24,
timeTextStyle:TextStyle(color:Colors.white),
),
);