fixIOSAutoScroll method
Implementation
void fixIOSAutoScroll(bool isFeed) {
if (Platform.isIOS) {
_webViewController.getScrollPosition().then((webviewOffset) => {
if (isFeed && webviewOffset.dy > 0)
{
_webViewController.scrollTo(0, 0),
}
});
}
}