Articles in this section
Category / Section

How to change the first day of week in the Flutter Date Range Picker (SfDateRangePicker)

1 min read

In the Flutter date range picker, you can change the first day of the week by using the firstDayOfWeek property of the picker.

import 'package:flutter/material.dart';
import 'package:syncfusion_flutter_datepicker/datepicker.dart';
 
void main() => runApp(FirstDayOfWeek());
 
class FirstDayOfWeek extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        debugShowCheckedModeBanner: false,
        home: Scaffold(
            body: Card(
          margin: const EdgeInsets.fromLTRB(50, 150, 50, 150),
          child: SfDateRangePicker(
            monthViewSettings:
                DateRangePickerMonthViewSettings(firstDayOfWeek: 3),
          ),
        )));
  }
}

View sample in GitHub

firstday of week

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied