Skip to content

Commit ca698e2

Browse files
committed
CQ: Add Forward & Back arrow correctly
1 parent 596c16e commit ca698e2

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

src/Files.App/Views/Shells/ModernShellPage.xaml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
77
xmlns:local="using:Files.App.Views.Shells"
88
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
9+
xmlns:s="using:Files.App.UserControls.Symbols"
910
xmlns:wct="using:CommunityToolkit.WinUI.UI"
1011
xmlns:wctconverters="using:CommunityToolkit.WinUI.UI.Converters"
1112
x:Name="RootPage"
@@ -71,11 +72,12 @@
7172
BorderThickness="1"
7273
Canvas.ZIndex="64"
7374
CornerRadius="24">
74-
<FontIcon
75+
<s:ArrowGlyph
7576
HorizontalAlignment="Center"
7677
VerticalAlignment="Center"
77-
Foreground="{ThemeResource TextOnAccentFillColorPrimaryBrush}"
78-
Glyph="&#xE72B;" />
78+
Arrow="Back"
79+
FontSize="14"
80+
Foreground="{ThemeResource TextOnAccentFillColorPrimaryBrush}" />
7981
</Border>
8082

8183
<!-- Swipe Forward Icon -->
@@ -92,11 +94,12 @@
9294
BorderThickness="1"
9395
Canvas.ZIndex="64"
9496
CornerRadius="24">
95-
<SymbolIcon
97+
<s:ArrowGlyph
9698
HorizontalAlignment="Center"
9799
VerticalAlignment="Center"
98-
Foreground="{ThemeResource TextOnAccentFillColorPrimaryBrush}"
99-
Symbol="Forward" />
100+
Arrow="Forward"
101+
FontSize="14"
102+
Foreground="{ThemeResource TextOnAccentFillColorPrimaryBrush}" />
100103
</Border>
101104

102105
<!-- Shell Frame -->

0 commit comments

Comments
 (0)