From 42d053804c422e5c64e57ba8112a338067a0f6d8 Mon Sep 17 00:00:00 2001 From: Benjamin Kampmann Date: Wed, 14 Aug 2024 11:05:16 +0100 Subject: [PATCH] Bumping threshold for shake up a bunch --- app/lib/features/home/pages/home_shell.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/features/home/pages/home_shell.dart b/app/lib/features/home/pages/home_shell.dart index 9106217ab214..a9692a584b31 100644 --- a/app/lib/features/home/pages/home_shell.dart +++ b/app/lib/features/home/pages/home_shell.dart @@ -83,7 +83,7 @@ class HomeShellState extends ConsumerState { // shake is possible in only actual mobile devices if (await isRealPhone()) { detector = ShakeDetector.autoStart( - shakeThresholdGravity: 3.0, + shakeThresholdGravity: 30.0, onShake: () { openBugReport(context); },