-
Notifications
You must be signed in to change notification settings - Fork 46
fix: Background for Tabbar Icon #1043
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
base: master
Are you sure you want to change the base?
Changes from 1 commit
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="{StaticResource OnSurfaceBrush}" Glyph="{StaticResource HomeIcon}" /> | ||
| <TextBlock Foreground="{StaticResource OnSurfaceBrush}" Text="Home" TextAlignment="Center" /> | ||
| </StackPanel> | ||
| </Border> | ||
| </Grid> | ||
| <Grid x:Name="Search" Visibility="Collapsed"> | ||
| <Border Background="LightGray"> | ||
|
Contributor
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="{StaticResource OnSurfaceBrush}" Glyph="{StaticResource SearchIcon}" /> | ||
| <TextBlock Foreground="{StaticResource OnSurfaceBrush}" Text="Search" TextAlignment="Center" /> | ||
| </StackPanel> | ||
| </Border> | ||
| </Grid> | ||
| <Grid x:Name="Support" Visibility="Collapsed"> | ||
| <Border Background="LightGray"> | ||
|
Contributor
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="{StaticResource OnSurfaceBrush}" Glyph="{StaticResource SupportIcon}" /> | ||
| <TextBlock Foreground="{StaticResource OnSurfaceBrush}" Text="Support" TextAlignment="Center" /> | ||
kazo0 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| </StackPanel> | ||
| </Border> | ||
| </Grid> | ||
| <Grid x:Name="About" Visibility="Collapsed"> | ||
| <Border Background="LightGray"> | ||
|
Contributor
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="{StaticResource OnSurfaceBrush}" Glyph="{StaticResource AboutIcon}" /> | ||
| <TextBlock Foreground="{StaticResource 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