#95 fixed non-vertical gesture detection in the bottom system gesture inset area
This commit is contained in:
parent
4bdf7d1e35
commit
63fbd0c149
1 changed files with 5 additions and 1 deletions
|
@ -21,7 +21,11 @@ class BottomGestureAreaProtector extends StatelessWidget {
|
||||||
right: 0,
|
right: 0,
|
||||||
bottom: 0,
|
bottom: 0,
|
||||||
height: systemGestureBottom,
|
height: systemGestureBottom,
|
||||||
child: const AbsorbPointer(),
|
child: GestureDetector(
|
||||||
|
// absorb vertical gestures only
|
||||||
|
onVerticalDragDown: (details) {},
|
||||||
|
behavior: HitTestBehavior.translucent,
|
||||||
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue