todayHighlightColor property

Color? todayHighlightColor
final

Color that highlights the today date cell in SfHijriDateRangePicker.

Allows to change the color that highlights the today date cell border in month, year and decade view in date range picker.

Defaults to null.

See also:


Widget build(BuildContext context) {
   return MaterialApp(
     home: Scaffold(
       body: SfHijriDateRangePicker(
         view: HijriDatePickerView.month,
         todayHighlightColor: Colors.red,
         showNavigationArrow: true,
       ),
     ),
   );
 }

Implementation

final Color? todayHighlightColor;