I've a following XAML which works in Android, but not in iOS:
<ScrollView HorizontalScrollBarVisibility="Never">
<Grid RowDefinitions="Auto,*">
<Label Text="{Binding subject}" Grid.Row="0"/>
<WebView x:Name="WebView" Grid.Row="1">
<WebView.Source>
<HtmlWebViewSource Html="{Binding html}"/>
</WebView.Source>
</WebView >
</ScrollView>
Looks like in iOS WebView is not auto sizing to it's contents, but does in Android. If I add HeightRequest to WebView in iOS to some big number then it scrolls fine.
So question is why WebView in Android is sized correctly, but not in iOS? Can this be fixed somehow?
Sample video in iOS:
Sample video in Android:

