weekNumberBackgroundColor property
Specify the background color of the week number panel in month view.
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(),
body: Center(
child: SfTheme(
data: SfThemeData(
dateRangePickerThemeData: SfDateRangePickerThemeData(
weekNumberBackgroundColor: Colors.blue,
)
),
child: SfDateRangePicker(),
),
)
);
}
Implementation
final Color? weekNumberBackgroundColor;