Adrien Gannerie
Adrien Gannerie
> https://zhuanlan.zhihu.com/p/429345027 看的这篇文章,解决了多点触控问题,屏蔽掉flutter侧的手势,用的原生手势 I'm looking to use your solution too. Do you have more explanation ? Maybe in english. Thanks a lot
So the only way to get multi touch working in Unity is to remake all the inputs layer from Flutter ? How do you use gestureRecognizers from the widget ?...
Thanks for your answer @iguangyu. I already saw this article but I don't understand anything when I try to translate it. Did you succeed to change the engine using this...
I fix my issue like this. ``` import 'package:flutter/material.dart'; import 'package:google_maps_flutter/google_maps_flutter.dart'; import '../../../domain/project/entities/geo_point.dart'; class Map extends StatefulWidget { final GeoPoint location; const Map({ Key? key, required this.location, }) : super(key:...