(flutter) set enablePicking to false by default in ThermionGestureDetector

This commit is contained in:
Nick Fisher
2024-09-11 18:03:52 +08:00
parent cf0dad2631
commit 5813753ef9

View File

@@ -51,7 +51,7 @@ class ThermionGestureDetector extends StatelessWidget {
this.child,
this.showControlOverlay = false,
this.enableCamera = true,
this.enablePicking = true,
this.enablePicking = false,
this.onScaleStart,
this.onScaleUpdate,
this.onScaleEnd})