Hi,
Is it possible somehow with Xamarin Forms to add views to WebView's ScrollView? In our old iOS native app we were able to do this via WebView.ScrollView.Add() method,
but not sure how to achieve this in forms?
Reason for this is that I've some content above WebView (building email compose screen, so From/To/Cc/Bcc/Subject etc.) and I want this content to scroll together with the WebView. If I wrap everything with ScrollView e.g. something like this
<ScrollView>
<StackLauout>
<TextEdit Label="Subject"/>
<ctrl:HybridWebView x:Name="webView">
<WebView.Source>
<HtmlWebViewSource Html="{Binding Html}"/>
</WebView.Source>
</ctrl:HybridWebView>
</StackLayout>
</ScrollView>
But the problem is that WebView has ScrollView so it fights with ScrollView wrapper and you get strange behaviour.
Good example of what I'm trying to achieve would be Gmail/Outlook apps when composing new email.
I've also observed interesting things how it works in Gmail and Outlook. In Gmail app when you type some text when composing email you can see that all the fields above (From, To, Subject etc.) are in the same scrollView as editor itself, as vertical scrollbar goes all the way up. So looks like Google devs added all the fields above WebView into WebView.ScrollView.
Outlook app behaves differently as scrollbar is only visible in editor itself, but somehow they scroll whole thing when required, no idea how they did this. Perhaps changing TranslationY on fields above?

