One screenshot of my xamarin forms ios app is adding below. I want the change the color on the top part, I mean on the color at the battery icon. Currently, it is white, I need it as yellow.
For getting the top padding I added the following code on my XAML:
<StackLayout>
<StackLayout.Padding>
<OnPlatform x:TypeArguments="Thickness"
Android="0, -10, 0, 0"
WinPhone="0, -10, 0, 0"
iOS="0, 15, 0, 0"/>
</StackLayout.Padding>
</StackLayout>
If I remove above code, my app icons and battery icon in the phone get overlap. So How can I change the white color on top?