Я меняю WebViewRenderer на WkWebViewRenderer в приложении My Xamarin Forms. Раньше у меня был метод прокрутки, который я переопределил, чтобы определить прокрутку до конца. Но в WkWebViewRenderer такого метода нет. Как еще это можно реализовать?
public override void Scrolled(UIKit.UIScrollView scrollView)
{
base.Scrolled(scrollView);
float y1 = (float)scrollView.ContentOffset.Y;
if ((this.Element as CustomWebview).ScrolledToEnd == false)
{
if ((scrollView.ContentSize.Height - 20) < (y1 + this.Element.Height))
{
(this.Element as CustomWebview).ScrolledToEnd = true;
if ((this.Element as CustomWebview).ScrollToEndDelegate != null)
{
(this.Element as CustomWebview).ScrollToEndDelegate.Invoke(true);
}
}
}
}