RightToLeft Flow Direction in MAUI StepProgressBar (SfStepProgressBar)

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

<ContentPage 
            . . .
            <stepProgressBar:SfStepProgressBar FlowDirection="RightToLeft"/>

   </ContentPage>
SfStepProgressBar stepProgressBar = new SfStepProgressBar();
stepProgressBar.FlowDirection = RightToLeft;
this.content = stepProgressBar;

Right to left in .NET MAUI Step Progress Bar