-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CollectionView2 Items display issue when Header is resized on iOS
- Loading branch information
Showing
4 changed files
with
127 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
src/Controls/tests/TestCases.HostApp/Issues/Issue25362.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | ||
x:Class="Maui.Controls.Sample.Issues.Issue25362" | ||
x:Name="Self" | ||
Title="Issue25362"> | ||
<Grid RowDefinitions="Auto,*"> | ||
<HorizontalStackLayout Grid.Row="0"> | ||
<Button | ||
Command="{Binding AddCommand}" | ||
HorizontalOptions="Center" | ||
AutomationId="button" | ||
Text="Add" /> | ||
</HorizontalStackLayout> | ||
|
||
<CollectionView | ||
Grid.Row="1" | ||
ItemsSource="{Binding ItemList}"> | ||
|
||
<CollectionView.Header> | ||
<VerticalStackLayout> | ||
<VerticalStackLayout BindableLayout.ItemsSource="{Binding BindingContext.ItemListHeader, Source={x:Reference Self}}"> | ||
<BindableLayout.ItemTemplate> | ||
<DataTemplate> | ||
<Label Padding="10" Text="{Binding .}" /> | ||
</DataTemplate> | ||
</BindableLayout.ItemTemplate> | ||
</VerticalStackLayout> | ||
<BoxView | ||
Margin="0,5" | ||
HeightRequest="2" | ||
Color="Black" /> | ||
</VerticalStackLayout> | ||
</CollectionView.Header> | ||
|
||
<CollectionView.ItemTemplate> | ||
<DataTemplate> | ||
<Label Padding="10" Text="{Binding .}" /> | ||
</DataTemplate> | ||
</CollectionView.ItemTemplate> | ||
</CollectionView> | ||
</Grid> | ||
</ContentPage> |
21 changes: 21 additions & 0 deletions
21
src/Controls/tests/TestCases.HostApp/Issues/Issue25362.xaml.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using System.Collections.ObjectModel; | ||
namespace Maui.Controls.Sample.Issues; | ||
|
||
[XamlCompilation(XamlCompilationOptions.Compile)] | ||
[Issue(IssueTracker.Github, 25362, "[iOS] CollectionView Items display issue when Header is resized", PlatformAffected.iOS)] | ||
|
||
public partial class Issue25362 : ContentPage | ||
{ | ||
public ObservableCollection<string> ItemList { get; } | ||
public ObservableCollection<string> ItemListHeader { get; } | ||
|
||
public Command AddCommand => new(() => ItemListHeader.Add($"HeaderItem{ItemListHeader.Count + 1}")); | ||
|
||
public Issue25362() | ||
{ | ||
InitializeComponent(); | ||
ItemList = new() { "Item1", "Item2", "Itme3" }; | ||
ItemListHeader = new() { "HeaderItem1" }; | ||
BindingContext = this; | ||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue25362.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
using NUnit.Framework; | ||
using UITest.Appium; | ||
using UITest.Core; | ||
|
||
namespace Microsoft.Maui.TestCases.Tests.Issues; | ||
|
||
public class Issue25362 : _IssuesUITest | ||
{ | ||
public override string Issue => "[iOS] CollectionView Items display issue when Header is resized"; | ||
|
||
public Issue25362(TestDevice device) : base(device) | ||
{ } | ||
|
||
[Test] | ||
[Category(UITestCategories.CollectionView)] | ||
public void HeaderShouldNotCollapseWithItems() | ||
{ | ||
App.WaitForElement("button"); | ||
App.Click("button"); | ||
App.Click("button"); | ||
App.Click("button"); | ||
|
||
//The test passes of header has 4 elements that don't overlap with the collection view's items | ||
VerifyScreenshot(); | ||
} | ||
} |