Right To Left Flow Direction in .NET MAUI Segmented control (SfSegmentedControl)

The SfSegmentedControl supports changing the flow direction of items rendering in the right-to-left order by setting the FlowDirection to RightToLeft.

<ContentPage 
...
xmlns:buttons="clr-namespace:Syncfusion.Maui.Buttons;assembly=Syncfusion.Maui.Buttons">
    <buttons:SfSegmentedControl x:Name="segmentedControl"
                                FlowDirection="RightToLeft">
    </buttons:SfSegmentedControl>
</ContentPage>
SfSegmentedControl segmentedControl = new SfSegmentedControl();
segmentedControl.FlowDirection = FlowDirection.RightToLeft;
this.Content = segmentedControl;

Right to left in .NET MAUI Segmented control.