Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
669 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...