fluttercommunity / flutter_webview_plugin

Community WebView Plugin - Allows Flutter to communicate with a native WebView.
https://pub.dev/packages/flutter_webview_plugin
Other
1.48k stars 929 forks source link

Detect if Webview scroll reach the end #945

Open djankey opened 2 years ago

djankey commented 2 years ago

I'm implementing the EULA WebView with the "Accept" button which must be visible only when the user scrolls to the bottom of the web page. The current scroll position is already implemented and it's working great:

webviewPlugin
      ..onScrollYChanged.listen((double offsetY) {
}

Is it possible to get the max scroll value? (getMaxScrollAmount or similar...)