I have a XAML page layout defined that includes a WebView
populated from an HTML string:
<WebView HorizontalOptions="Fill" VerticalOptions="FillAndExpand">
<WebView.Source>
<HtmlWebViewSource Html="{Binding Flag.Description}" />
<!-- <HtmlWebViewSource Html="<html><body><p>The HTML string.</p></body></html>" />-->
</WebView.Source>
</WebView>
When I hard code the string into the XAML it displays correctly, but it will not bind to the Flag.Description
string. The XAML includes a couple of labels that bind correctly but I can't find any reason why the WebView source isn't binding correctly.