Right To Left Flow Direction in .NET MAUI Image Editor (SfImageEditor)

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

<ContentPage 
            . . .
            <imageEditor:SfImageEditor Source="image.jpeg" FlowDirection="RightToLeft"/>

   </ContentPage>
SfImageEditor imageEditor = new SfImageEditor();
     imageEditor.Source = "image.jpeg";
     imageEditor.FlowDirection = RightToLeft;
     this.content = imageEditor;

Right to left in .NET MAUI Image Editor