Hello,
Do you want to keep controls' side and location when you set the Flowdirection
to RightToLeft
?
If so, you can use HorizontalOptions
to keep controls side and location. For example, you set FlowDirection="RightToLeft"
, but you need to keep the Label
on the left. You can use the following code.
<Label
FlowDirection="RightToLeft"
Text="Welcome to .NET MAUI!"
HorizontalOptions="End"
/>
also the title of the picker is disappointing when switching from LTR to RTL.
Does this title keep on the left in the popup window?
As note: Ask one question at a time
Best Regards,
Leon Lu
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.