How to change the right to left (RTL) flow direction in .NET MAUI Scheduler (SfScheduler)
The .NET MAUI Scheduler displays content in a left-to-right layout direction by default. However, you can change this layout direction to right-to-left using the FlowDirection property. This capability is important for supporting languages and regions where RTL layouts are preferred.
XAML
<?xml version="1.0" encoding="utf-8" ?> <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="FlowDirection.MainPage" BackgroundColor="{DynamicResource SecondaryColor}" xmlns:scheduler="clr-namespace:Syncfusion.Maui.Scheduler;assembly=Syncfusion.Maui.Scheduler"> <Grid> <scheduler:SfScheduler x:Name="Scheduler" View="Week" AllowedViews="Day,Week,WorkWeek,TimelineDay,TimelineWeek,TimelineWorkWeek" FlowDirection="RTL"> </scheduler:SfScheduler> </Grid> </ContentPage>
Output
Conclusion
I hope you enjoyed learning how to set the right to left (RTL) flow direction in the .NET MAUI Scheduler.
Refer to our .NET MAUI Scheduler feature tour page to learn about its other groundbreaking feature representations. You can explore our .NET MAUI Scheduler documentation to understand how to present and manipulate data.
For current customers, check out our .NET MAUI components from the License and Downloads page. If you are new to Syncfusion®, try our 30-day free trial to check out our .NET MAUI Scheduler and other .NET MAUI components.
Please let us know in the following comments section if you have any queries or require clarifications. Contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!