maui icon indicating copy to clipboard operation
maui copied to clipboard

[iOS] Setting background color on the Searchbar - fix

Open kubaflo opened this issue 1 year ago • 10 comments

Issues Fixed

Fixes https://github.com/dotnet/maui/issues/23325 Fixes https://github.com/dotnet/maui/issues/24100

kubaflo avatar Jun 28 '24 22:06 kubaflo

Hey there @kubaflo! Thank you so much for your PR! Someone from the team will get assigned to your PR shortly and we'll get it reviewed.

/azp run

Redth avatar Jul 10 '24 20:07 Redth

Azure Pipelines successfully started running 3 pipeline(s).

azure-pipelines[bot] avatar Jul 10 '24 20:07 azure-pipelines[bot]

/azp run

mattleibow avatar Jul 18 '24 18:07 mattleibow

Azure Pipelines successfully started running 3 pipeline(s).

azure-pipelines[bot] avatar Jul 18 '24 18:07 azure-pipelines[bot]

/azp run

PureWeen avatar Aug 03 '24 22:08 PureWeen

Azure Pipelines successfully started running 3 pipeline(s).

azure-pipelines[bot] avatar Aug 03 '24 22:08 azure-pipelines[bot]

@kubaflo @PureWeen I think I see another bug. Once a custom BackgroundColor has been set its not possible to return to the default color (searchHandler.BackgroundColor = null;). Infact it will cause a NRE in line 168 (backGroundColor.ToPlatform()). Proposed change to line 154

if (backGroundColor == null)
{
	_hasCustomBackground = false;
	
	backgroundView.Layer.CornerRadius = 0;
	backgroundView.ClipsToBounds = false;
	backgroundView.BackgroundColor = _defaultBackgroundColor;
	textField.BackgroundColor = _defaultBackgroundColor;
	
	return;
}

aheubusch avatar Sep 27 '24 19:09 aheubusch

/rebase

jsuarezruiz avatar Oct 29 '24 15:10 jsuarezruiz

/azp run

jsuarezruiz avatar Oct 29 '24 15:10 jsuarezruiz

Azure Pipelines successfully started running 3 pipeline(s).

azure-pipelines[bot] avatar Oct 29 '24 15:10 azure-pipelines[bot]

/rebase

jsuarezruiz avatar Nov 15 '24 09:11 jsuarezruiz

/azp run

jsuarezruiz avatar Nov 15 '24 09:11 jsuarezruiz

Azure Pipelines successfully started running 3 pipeline(s).

azure-pipelines[bot] avatar Nov 15 '24 09:11 azure-pipelines[bot]

/rebase

mattleibow avatar May 13 '25 17:05 mattleibow