headerHeight property

double headerHeight
final

The height for header view to layout within this in SfHijriDateRangePicker.

Defaults to value 40.

Note: If showNavigationArrows set as true the arrows will shrink or grow based on the given header height value.

See also:


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

Implementation

final double headerHeight;