Skip to content

Commit 19ac12e

Browse files
committed
Fix Flow Direction to Left To Right
The FlowDirection property is a key feature in .NET MAUI for controlling the direction of layout and is available on all visual elements. Like (Persian, Hebrew, Arabic)
1 parent ab8fde9 commit 19ac12e

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed

AboutMe.xaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ HorizontalOptions="Center" />
7373
Padding="1"
7474
VerticalOptions="Center"
7575
HorizontalOptions="Center"
76+
FlowDirection="LeftToRight"
7677
>
7778

7879
<Label
@@ -113,6 +114,7 @@ HorizontalOptions="Center" />
113114
Padding="1"
114115
VerticalOptions="Center"
115116
HorizontalOptions="Center"
117+
FlowDirection="LeftToRight"
116118
>
117119

118120
<Label

CheakNewVersion.xaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ FontFamily="Fortnitee"
4141
Padding="15"
4242
VerticalOptions="Center"
4343
HorizontalOptions="Center"
44+
FlowDirection="LeftToRight"
4445
>
4546

4647
<Label

MainPage.xaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575
<Label
7676
x:Name="SelectedItemLabel"
7777
Text="Status:"
78+
FlowDirection="LeftToRight"
7879
VerticalOptions="Fill"
7980
HorizontalOptions="Fill"
8081
WidthRequest="370"
@@ -87,7 +88,7 @@
8788

8889
<ListView
8990
x:Name="MyListView"
90-
91+
FlowDirection="LeftToRight"
9192
VerticalOptions="Fill"
9293
VerticalScrollBarVisibility="Never"
9394
HorizontalOptions="Fill"

SinglePingTest.xaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
>
5454
<Label
5555
x:Name="PingResultsLabel"
56+
FlowDirection="LeftToRight"
5657
Text="Press the button to start the ping test"
5758
FontFamily="monospace"
5859
TextColor="#00FF00"

0 commit comments

Comments
 (0)