I'm trying to implement WebView that changes it's height dynamically in a ListView. I'm using Xamarin forms (PCL) with separate project for iOS and Android mainly for custom renderers.
I've tried to follow the solution stated here: https://forums.xamarin.com/discussion/comment/184948/#Comment_184948
The way he implemented it is that he wait 100ms for the WebView to be rendered, then changes the WebView height according to the height of the content.
In my case, since the webView is inside a ListView item, the height of the ListView item is not adjusted accordingly (the WebView goes outside the boundary of the ListView item).
My question is, how do i modify the height of the ListView items when the WebView height inside is modified?
Thank you for helping me!
