long press for drag
This commit is contained in:
parent
7a2d687367
commit
8583b6b140
@ -178,6 +178,17 @@ class _RemotePageState extends State<RemotePage> {
|
|||||||
if (_drag || _scroll) return;
|
if (_drag || _scroll) return;
|
||||||
FFI.tap(_right);
|
FFI.tap(_right);
|
||||||
},
|
},
|
||||||
|
onLongPressStart: (_) {
|
||||||
|
if (_drag) {
|
||||||
|
// case: to show password on windows
|
||||||
|
FFI.sendMouse('down', 'left');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onLongPressEnd: (_) {
|
||||||
|
if (_drag) {
|
||||||
|
FFI.sendMouse('up', 'left');
|
||||||
|
}
|
||||||
|
},
|
||||||
onScaleStart: (details) {
|
onScaleStart: (details) {
|
||||||
_scale = 1;
|
_scale = 1;
|
||||||
_xOffset = details.focalPoint.dx;
|
_xOffset = details.focalPoint.dx;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user