Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:utu="using:Uno.Toolkit.UI"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
Background="{ThemeResource SurfaceBrush}">

<Grid>
<Grid.RowDefinitions>
Expand Down Expand Up @@ -42,32 +42,32 @@
<Grid x:Name="Home" Visibility="Collapsed">
<Border Background="LightGray">
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This Background needs to be set to {ThemeResource SurfaceBrush} instead of LightGray

<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
<FontIcon Glyph="{StaticResource HomeIcon}" />
<TextBlock Text="Home" TextAlignment="Center" />
<FontIcon Foreground="{ThemeResource OnSurfaceBrush}" Glyph="{ThemeResource HomeIcon}" />
<TextBlock Foreground="{ThemeResource OnSurfaceBrush}" Text="Home" TextAlignment="Center" />
</StackPanel>
</Border>
</Grid>
<Grid x:Name="Search" Visibility="Collapsed">
<Border Background="LightGray">
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This Background needs to be set to {ThemeResource SurfaceBrush} instead of LightGray

<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
<FontIcon Glyph="{StaticResource SearchIcon}" />
<TextBlock Text="Search" TextAlignment="Center" />
<FontIcon Foreground="{ThemeResource OnSurfaceBrush}" Glyph="{ThemeResource SearchIcon}" />
<TextBlock Foreground="{ThemeResource OnSurfaceBrush}" Text="Search" TextAlignment="Center" />
</StackPanel>
</Border>
</Grid>
<Grid x:Name="Support" Visibility="Collapsed">
<Border Background="LightGray">
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This Background needs to be set to {ThemeResource SurfaceBrush} instead of LightGray

<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
<FontIcon Glyph="{StaticResource SupportIcon}" />
<TextBlock Text="Support" TextAlignment="Center" />
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
<FontIcon Foreground="{ThemeResource OnSurfaceBrush}" Glyph="{ThemeResource SupportIcon}" />
<TextBlock Foreground="{ThemeResource OnSurfaceBrush}" Text="Support" TextAlignment="Center" />
</StackPanel>
</Border>
</Grid>
<Grid x:Name="About" Visibility="Collapsed">
<Border Background="LightGray">
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This Background needs to be set to {ThemeResource SurfaceBrush} instead of LightGray

<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
<FontIcon Glyph="{StaticResource AboutIcon}" />
<TextBlock Text="About" TextAlignment="Center" />
<FontIcon Foreground="{ThemeResource OnSurfaceBrush}" Glyph="{ThemeResource AboutIcon}" />
<TextBlock Foreground="{ThemeResource OnSurfaceBrush}" Text="About" TextAlignment="Center" />
</StackPanel>
</Border>
</Grid>
Expand Down