showTodayButton property

bool showTodayButton
final

Displays the today button on the bottom of the SfHijriDateRangePicker.

The today button allows to navigate to the today date quickly in all view of the SfHijriDateRangePicker.

Defaults to false.

See also:


@override
Widget build(BuildContext context) {
   return MaterialApp(
     home: Scaffold(
       body: SfHijriDateRangePicker(
         showTodayButton: true,
       ),
     ),
   );
 }

Implementation

final bool showTodayButton;