You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
5. In **File > Build Settings**, make sure to have at least 1 scene added to your build.
@@ -591,6 +594,7 @@ class _MyAppState extends State<MyApp> {
591
594
bottom: 20,
592
595
left: 20,
593
596
right: 20,
597
+
// <You need a PointerInterceptor here on web>
594
598
child: Card(
595
599
elevation: 10,
596
600
child: Column(
@@ -885,17 +889,35 @@ Flutter on default doesn't support `--flavor` for building web. But you can set
885
889
886
890
### Web GL
887
891
888
-
> If you develop and ship Flutter with Unity WebGL then you will first notice, that stacked Widgets over your UnityWidget are not tappable!
889
-
890
-
This is actually a Flutter related Issue (See: https://github.com/flutter/flutter/issues/72273).
891
-
892
-
To solve this, Flutter-Team already got a solution for this. Use: [PointerInterceptor](https://pub.dev/packages/pointer_interceptor)!
892
+
Flutter widgets stacked on top of the UnityWidget will not register clicks or taps. This is a [Flutter issue](https://github.com/flutter/flutter/issues/72273) and can be solved by using the [PointerInterceptor](https://pub.dev/packages/pointer_interceptor) package.
0 commit comments