-
Notifications
You must be signed in to change notification settings - Fork 936
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
WebviewScaffold with a drawer #46
Comments
Hi, The webview is not a "Flutter Widget", it is a native view on top of the flutter view, so you can draw flutter widgets on it (drawer or popup menu). The only thing you could do, is to call That kind of feature is not possible due to Flutter, they are working on draw webview directly on the widget tree, I suggest you to follow this thread. (flutter/flutter#730) |
@lejard-h Thanks a lot. |
Hello,
Now when the keyboard appears, I resize the rectangle
The rectangle is not resizing correctly to display the url. |
I have found a work around for this issue of drawer get hidden behind WebviewScaffold.
This way Drawer will never get hide behind webviewscaffold and your webview always keeps its state with it, even after drawer gets open. |
Hi,
Is there a way to use a WebviewScaffold with a drawer?
I revised WebviewScaffold like this.
When I tab a drawer button, the drawer appears behind the webview.
I set the elevation of the drawer as 10000, but it's not working.
I think this is related to the Rect class of the Dart UI package.
Is there another way to use a webview with a drawer?
The text was updated successfully, but these errors were encountered: