gunschu / jitsi_meet

Initial commit
208 stars 282 forks source link

Draw widget over video screen #357

Closed usamawork61 closed 2 years ago

usamawork61 commented 2 years ago

Hi, im using jitsi meet in flutter, is there a way to draw a widget over the video meet screen? it covers the whole screen. i want a button over this for my custom functionality.

stale[bot] commented 2 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

iamtechmanish commented 1 year ago

When overlaying Flutter widgets on top of HtmlElementView widgets that respond to mouse gestures (handle clicks, for example), the clicks will be consumed by the HtmlElementView, and not relayed to Flutter.

The result is that Flutter widget's onTap (and other) handlers won't fire as expected, but they'll affect the underlying webview.

To fix this you can use : pointer_interceptor

Sample Code