-
Notifications
You must be signed in to change notification settings - Fork 95
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
Drawer does not respond when drawn over an EasyWebView #7
Comments
Can you provide some small example code? |
Hi, I have to clarify this issue. |
Can you check with the latest release? And on the dev or master channel for flutter? |
It is still happening with easy_web_view 1.2.0 on channels dev and master. |
Gotcha, yeah that is super annoying, I’ll see what I can do to fix that. Maybe I could add a property to disable and enable interaction? |
Good idea.
Probably we always know when there is a widget covering an easy_web_view widget. So we can disable interaction temporarily.
It’s a great solution while we try to find someone to blame for the issue :-)
…_______________________________________________________________________________________________
Light travels faster than sound. This is why some people appear bright until you hear them speak
On 24 Mar 2020, at 16:21, Rody Davis ***@***.***> wrote:
Gotcha, yeah that is super annoying, I’ll see what I can do to fix that. Maybe I could add a property to disable and enable interaction?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub <#7 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AANABFLBG7A6P7YDIEVBSOTRJEB3FANCNFSM4LRATF4A>.
|
BTW, flutter_webview_plugin does not stop the dialog from working, but it does not display the same page as easy_web_view does.
I prefer to use yours. ;-)
…_______________________________________________________________________________________________
To steal ideas from one person is plagiarism. To steal from many is research.
On 24 Mar 2020, at 16:25, Jorge Sagasti ***@***.***> wrote:
Good idea.
Probably we always know when there is a widget covering an easy_web_view widget. So we can disable interaction temporarily.
It’s a great solution while we try to find someone to blame for the issue :-)
_______________________________________________________________________________________________
Light travels faster than sound. This is why some people appear bright until you hear them speak
> On 24 Mar 2020, at 16:21, Rody Davis ***@***.***> wrote:
>
>
> Gotcha, yeah that is super annoying, I’ll see what I can do to fix that. Maybe I could add a property to disable and enable interaction?
>
> —
> You are receiving this because you authored the thread.
> Reply to this email directly, view it on GitHub, or unsubscribe.
>
|
Working on this branch but still no success: https://github.com/rodydavis/easy_web_view/tree/scrolling-and-guestures |
Probably the same issue in the flutter repo flutter/flutter#54027. |
Blocked by the flutter issue |
Hello, If you add:
in the head section of web/index.html , the problem solves. Regards |
Nice fix!
On Tue, Dec 29, 2020 at 10:51 PM borjitisss ***@***.***> wrote:
Hello,
I find a way to solve in flutter web.
If you add:
<style type="text/css"> flt-scene-host { pointer-events: auto !important;
} </style>
in the head section of web/index.html , the problem solves.
Regards
—
You are receiving this because you were assigned.
Reply to this email directly, view it on GitHub
<#7 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AHOOFX7MHK2D27FCPLAFIA3SXKWVRANCNFSM4LRATF4A>
.
--
Rody Davis Jr
|
First of all, thanks for sharing, I've been straggling for days to show a page inside a Widget in iOS, Android and Web with the sane code base.
I use a Drawer in the AppBar, when it opens over an EasyWebView it stops responding.
Is there a way to solve this issue?
Thanks in advance.
The text was updated successfully, but these errors were encountered: