allowViewNavigation property

bool allowViewNavigation
final

Determines whether view switching is allowed among CalendarViews on interaction.

Defaults to 'false'.

See also:


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

Implementation

final bool allowViewNavigation;