I have created an In app web view using dependency flutter_inappwebview: ^4.0.0+4. There is a feature scrollTo({}) which automatically scrolls to a certain position in website, but i am unable to implement it such that website automatically scrolls after some time or at a certain velocity.
InAppWebView(
initialUrl: Constents.passedLink,
initialHeaders: {},
onWebViewCreated: (InAppWebViewController controller) {
webView = controller;
},
onLoadStart:
(InAppWebViewController controller, String url) {},
onLoadStop:
(InAppWebViewController controller, String url) {},
),
question from:https://stackoverflow.com/questions/65943912/how-to-add-an-auto-scroll-feature