How to change the working direction (RTL) of the Flutter Date Range Picker (SfDateRangePicker)?
In the Flutter date range picker, we can change working directions (RTL and LTR) of the picker using the `Directionality` widget.
Step 1:
Use the `Directionality` widget inside the body of the Scaffold. Use the `textDirection` property for changing the directionality of the calendar.
body: Card( margin: const EdgeInsets.fromLTRB(40, 150, 40, 150), child: Directionality( textDirection: TextDirection.rtl, child: SfDateRangePicker( monthViewSettings: DateRangePickerMonthViewSettings( showTrailingAndLeadingDates: true), )), )));
Step 2:
Please find the entire code snippet for the same.
import 'package:flutter/material.dart'; import 'package:flutter/rendering.dart'; import 'package:flutter/widgets.dart'; import 'package:syncfusion_flutter_datepicker/datepicker.dart'; void main() => runApp(WorkingDirection()); class WorkingDirection extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, home: WorkingDirectionInPicker(), ); } } class WorkingDirectionInPicker extends StatefulWidget { @override State<StatefulWidget> createState() => ScheduleExample(); } class ScheduleExample extends State<WorkingDirectionInPicker> { @override Widget build(BuildContext context) { return Scaffold( body: Card( margin: const EdgeInsets.fromLTRB(40, 150, 40, 150), child: Directionality( textDirection: TextDirection.rtl, child: SfDateRangePicker( monthViewSettings: DateRangePickerMonthViewSettings( showTrailingAndLeadingDates: true), )), )); } }
View the Github Sample here.
Screenshot
|
|
Please refer to the below links,
I hope you enjoyed learning about how to change the working direction (RTL) of the Flutter Date Range Picker (SfDateRangePicker).
You can refer to our Flutter Date Range Picker feature tour page to learn about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our Flutter Date Range Picker example to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!