-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
!!!! help scrollbar error #210
Comments
Can you give me some more info? Provide me also the URL, thanks! |
https://flutter.dev/ Sometimes it happens
|
After some debugging, I discovered that this happens on iOS during the rendering if the WebView is not inside at least a In your case, you can just replace the first body: SafeArea(
child: Column(
children: <Widget>[
getProgressView(),
Expanded(
child: Container(
decoration: BoxDecoration(border: Border.all(color: Colors.transparent)),
child: InAppWebView(
initialUrl: url,
initialHeaders: {},
initialOptions: InAppWebViewWidgetOptions(
inAppWebViewOptions: InAppWebViewOptions(
debuggingEnabled: true,
)),
onWebViewCreated: (InAppWebViewController controller) {
webView = controller;
},
onLoadStart: (InAppWebViewController controller, String url) {
setState(() {
this.url = url;
});
},
onLoadStop:
(InAppWebViewController controller, String url) async {
setState(() {
this.url = url;
});
controller.getTitle().then((s) {
setState(() {
title = s;
print(title);
});
});
},
onProgressChanged:
(InAppWebViewController controller, int progress) {
setState(() {
this.progress = progress / 100;
});
},
),
),
),
],
),
), |
This thread has been automatically locked since there has not been any recent activity after it was closed. If you are still experiencing a similar issue, please open a new bug and a minimal reproduction of the issue. |
the webview scrollbar error?
The text was updated successfully, but these errors were encountered: