-
Notifications
You must be signed in to change notification settings - Fork 750
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
Found an issue after the Uno 5.0 update where the 'Overview' header is misplaced on WebAssembly: #15202
Comments
This may look like a header placement issue, but it depends on what this list is made with. |
It's the header of a GridView found here: https://github.com/CommunityToolkit/Tooling-Windows-Submodule/blob/529eb6f28fedcd3531a4d35f9038f2ffdfb6b678/CommunityToolkit.App.Shared/Pages/GettingStartedPage.xaml#L169-L187 <GridView x:Name="controlsGridView"
Margin="-8,0,0,0"
IsItemClickEnabled="True"
ItemClick="controlsGridView_ItemClick"
ItemTemplate="{StaticResource ControlItemGridViewTemplate}"
SelectionMode="None">
<GridView.Header>
<TextBlock Margin="8,0,0,16"
Style="{StaticResource SubtitleTextBlockStyle}"
Text="Overview" />
</GridView.Header>
<win:GridView.ItemContainerStyle>
<Style BasedOn="{StaticResource DefaultGridViewItemStyle}"
TargetType="GridViewItem">
<Setter Property="Margin" Value="12,0,0,12" />
</Style>
</win:GridView.ItemContainerStyle>
</GridView> |
Maybe @Xiaoy312 will know? |
@ramezgerges may know as well. |
6 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Found an issue after the Uno 5.0 update where the 'Overview' header is misplaced on WebAssembly:
This isn't the case on UWP:
Or on Wasdk:
Otherwise, no new issues with the components themselves.
Originally posted by @Arlodotexe in CommunityToolkit/Windows#311 (comment)
The text was updated successfully, but these errors were encountered: