-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Background for Tabbar Icon #1043
base: master
Are you sure you want to change the base?
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|
@@ -42,32 +42,32 @@ | |
<Grid x:Name="Home" Visibility="Collapsed"> | ||
<Border Background="LightGray"> | ||
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center"> | ||
<FontIcon Glyph="{StaticResource HomeIcon}" /> | ||
<TextBlock Text="Home" TextAlignment="Center" /> | ||
<FontIcon Foreground="{ThemeResource OnSurfaceBrush}" Glyph="{ThemeResource HomeIcon}" /> | ||
kazo0 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
<TextBlock Foreground="{ThemeResource OnSurfaceBrush}" Text="Home" TextAlignment="Center" /> | ||
</StackPanel> | ||
</Border> | ||
</Grid> | ||
<Grid x:Name="Search" Visibility="Collapsed"> | ||
<Border Background="LightGray"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This Background needs to be set to |
||
<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"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This Background needs to be set to |
||
<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"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This Background needs to be set to |
||
<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> | ||
|
There was a problem hiding this comment.
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 ofLightGray