Hi,
I've WebView inside ScrollView together with other controls like labels above WebView. When I scroll only WebView scrolls, how can I make so whole screen scrolls?
<ScrollView>
<StackLayout VerticalOptions="FillAndExpand">
<Label Text="Hello"/>
<WebView VerticalOptions="FillAndExpand">
<WebView.Source>
<HtmlWebViewSource Html="{Binding MyHTMLText}" />
</WebView.Source>
</WebView>
</StackLayout>
</ScrollView>
I'm trying to achieve same thing as Gmail app does. What is interesting that in Gmail app when you scroll up scrollbar only appears when email header is completely hidden, so looks like they somehow combined email header controls and WebView, but not in ScrollView.