i have put a webview, Anroid is working fine but on IOS, when i scroll, i see the content scrolling behind the transparent status bar. Click and see the top left corner of the image
i have tried using safari related css adding margins and paddings but its not working
public partial class MainPage : ContentPage
{
public MainPage()
{
var browser = new WebView();
browser.Source = "https://xxxxxxxxxxxxxxxx.net/";
Content = browser;
}
}
i expect that the status bar goes opaque and scrolled content doesn't show behind the status bar.
