Skip to content
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

Closed
MartinZikmund opened this issue Jan 24, 2024 · 4 comments · Fixed by #15272
Assignees

Comments

@MartinZikmund
Copy link
Member

Found an issue after the Uno 5.0 update where the 'Overview' header is misplaced on WebAssembly:

image

This isn't the case on UWP:
image

Or on Wasdk:
image

Otherwise, no new issues with the components themselves.

Originally posted by @Arlodotexe in CommunityToolkit/Windows#311 (comment)

@jeromelaban
Copy link
Member

This may look like a header placement issue, but it depends on what this list is made with.

@michael-hawker
Copy link

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>

@MartinZikmund
Copy link
Member Author

Maybe @Xiaoy312 will know?

@jeromelaban
Copy link
Member

@ramezgerges may know as well.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants