I use InAppWebView to display a web content in our app.
To ensure that it only takes the necessary space I listen to the onLoadStop callback to then set a SizedBoxs height.
There I try to get the content height:
final height = await controller.getContentHeight();
But it always returns 0.
On iOS I always get the right height.