-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
WebView is Not Scrollable #316
Comments
Another Potential bug Ive noticed, sharedCookiesEnabled set to false doesn't seem to make the session not save the cookies, which is expected behavior. |
You can apply the var gestureRecognizers = <Factory<OneSequenceGestureRecognizer>>[
Factory<OneSequenceGestureRecognizer>(
() => EagerGestureRecognizer(),
),
].toSet(); |
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. |
Environment
Flutter version: 1.12.13 stable
Plugin version: ^2.1.0+1
Android version:
iOS version: 13.3
Xcode version: 11.3.1
Device information: Iphone 11 Max simulator
Description
When I create a webview in my app, I expect the content to be scrollable,
but when I try to scroll within it, since the container of the webview is a descendent of SingleChildScrollView, the scroll happens on my page content, not the webview (yes, im scrolling within the actual content and not page).
Expected behavior:
The webview should scroll down the contents of the website.
Current behavior:
The actual flutter page that has SingleChildScrollView gets scrolled instead.
Steps to reproduce
Create a component that looks like this
Another Note
Im interested in running this plugin on Xcode 10.2, what properties do I have to modify in source code besides the isFraudelent option? Thanks
The text was updated successfully, but these errors were encountered: