showDatePickerButton property

bool showDatePickerButton
final

Displays the date picker when the SfCalendar header date is tapped.

The date picker will be used for quick date navigation in SfCalendar.

Defaults to false.

see also:

Widget build(BuildContext context) {
   return Container(
     child: SfCalendar(
     view: CalendarView.day,
     showDatePickerButton: true,
     ),
   );
 }

Implementation

final bool showDatePickerButton;