#95 fixed non-vertical gesture detection in the bottom system gesture inset area

This commit is contained in:
Thibault Deckers 2021-10-06 15:16:01 +09:00
parent 4bdf7d1e35
commit 63fbd0c149

View file

@ -21,7 +21,11 @@ class BottomGestureAreaProtector extends StatelessWidget {
right: 0,
bottom: 0,
height: systemGestureBottom,
child: const AbsorbPointer(),
child: GestureDetector(
// absorb vertical gestures only
onVerticalDragDown: (details) {},
behavior: HitTestBehavior.translucent,
),
);
},
);