From 7c07f60156fc6bdf2ef823366f4236b1707f4e96 Mon Sep 17 00:00:00 2001 From: Subhiksha Chandrasekaran Date: Fri, 12 Jun 2026 11:46:35 +0530 Subject: [PATCH] Fix build error --- src/Controls/src/Core/SwipeView/SwipeItem.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Controls/src/Core/SwipeView/SwipeItem.cs b/src/Controls/src/Core/SwipeView/SwipeItem.cs index 6a7795f12d34..8505094c9eb6 100644 --- a/src/Controls/src/Core/SwipeView/SwipeItem.cs +++ b/src/Controls/src/Core/SwipeView/SwipeItem.cs @@ -36,11 +36,6 @@ public bool IsVisible public event EventHandler Invoked; - static void OnIsVisibleChanged(BindableObject bindable, object oldValue, object newValue) - { - var swipeItem = (SwipeItem)bindable; - swipeItem.Handler?.UpdateValue(nameof(ISwipeItemMenuItem.Visibility)); - } Paint ISwipeItemMenuItem.Background => new SolidPaint(BackgroundColor); Visibility ISwipeItemMenuItem.Visibility => this.IsVisible ? Visibility.Visible : Visibility.Collapsed;