From 747610c0bea2180092314e7a3a34a3c503ee4dec Mon Sep 17 00:00:00 2001 From: Subhiksha Chandrasekaran Date: Wed, 8 Jul 2026 17:31:58 +0530 Subject: [PATCH] fixed missed property change for ClearPlaceholderEnabled Property --- .../Compatibility/Handlers/Shell/Android/ShellSearchView.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellSearchView.cs b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellSearchView.cs index 8af2e319b6ec..6973ad76d81a 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellSearchView.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellSearchView.cs @@ -256,6 +256,9 @@ protected virtual void OnSearchHandlerPropertyChanged(object sender, PropertyCha else if (e.PropertyName == SearchHandler.ClearPlaceholderIconProperty.PropertyName) { ApplyImageSource(_clearPlaceholderButton, SearchHandler.ClearPlaceholderIcon, -1, SearchHandler.TextColor?.ToPlatform()); + } + else if (e.PropertyName == SearchHandler.ClearPlaceholderEnabledProperty.PropertyName) + { UpdateClearButtonState(); } }