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

Fixed [iOS] Fix CarouselViewRemoveAt so that it's passing on both CV1 and CV2 sets of handlers #25919

Merged
merged 7 commits into from
Dec 11, 2024
Prev Previous commit
Next Next commit
modified code changes
  • Loading branch information
NirmalKumarYuvaraj committed Nov 20, 2024
commit 4fff4fe7f4f65eabdc1e71e5cecd205bcb1738f7
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ namespace Maui.Controls.Sample.Issues
[Issue(IssueTracker.None, 10300, "ObservableCollection.RemoveAt(index) with a valid index raises ArgumentOutOfRangeException", PlatformAffected.iOS)]
public class CarouselViewRemoveAt : ContentPage
{
readonly CarouselView2 _carousel;
readonly CarouselView _carousel;

public class ModalPage : ContentPage
{
@@ -47,7 +47,7 @@ public CarouselViewRemoveAt()
new ModelCarouselViewRemoveAt("8", Colors.IndianRed),
new ModelCarouselViewRemoveAt("9", Colors.Khaki),
});
_carousel = new CarouselView2
_carousel = new CarouselView
{
ItemTemplate = new DataTemplate(() =>
{