-
Notifications
You must be signed in to change notification settings - Fork 1.9k
[iOS] Fixed the Items are not displaying in CarouselView 2 #29397
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: main
Are you sure you want to change the base?
Changes from all 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 |
---|---|---|
|
@@ -28,9 +28,8 @@ protected override void Init() | |
SnapPointsType = SnapPointsType.MandatorySingle, | ||
SnapPointsAlignment = SnapPointsAlignment.Center | ||
}; | ||
// This functionality failed in CarouselView2. Reference: https://github.com/dotnet/maui/issues/29310 | ||
// TODO: Replace CarouselView1 with CarouselView once the issues are resolved. | ||
var carouselView = new CarouselView1 | ||
|
||
var carouselView = new CarouselView | ||
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. Could be nice to update some of the related Issue7678 tests to verify some snapshots. 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. Random colors are used for the border background inside the CarouselView template in the |
||
{ | ||
AutomationId = "carouselView", | ||
ItemsLayout = itemsLayout, | ||
|
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.
Is this change needed?
When testing this PR if I just remove this override everything still works