Reputation: 11
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
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