我創建了一組自定義html5音頻控件,我在iOS和Android Xamarin Forms應用程序中使用了這些控件。 當我導航到應用程序中該內容所在的頁面時,WebView在渲染html內容之前呈現爲一個白色框。有什麼方法可以在用戶可見之前渲染此視圖?有沒有什麼辦法用Xamarin Forms預渲染WebView控件?
public partial class TutorialPage : ContentPage
{
private readonly ITutorialViewModel _dataModel;
public TutorialPage(ITutorialViewModel dataModel)
{
InitializeComponent();
Title = "Tutorial";
var browser = new WebView() { HeightRequest = 150, WidthRequest = 400, HorizontalOptions = LayoutOptions.CenterAndExpand };
browser.Source = DependencyService.Get<IBaseUrl>().Get();
mainStack.Children.Add(browser);
}
}