Luke992
Luke992

Reputation: 11

Xamarin IOS BackGgroundColor doesn't work?

I have a problem with the header of a listview, as I understand it, unlike Android, on IOS by default I have the background color = White .. I would like to have it as transparent as on android in fact, but I can't set it up, I'll post the code:enter image description here

Thanks in advance.

Upvotes: 0

Views: 154

Answers (1)

Liqun Shen-MSFT
Liqun Shen-MSFT

Reputation: 8080

You may refer to this Cell Background Color on iOS.

In your code, change

<ViewCell Height="25" x:Name="ViewCellWithe" >

to

ViewCell Height="25" x:Name="ViewCellWithe" ios:Cell.DefaultBackgroundColor="Transparent" >

Upvotes: 1

Related Questions