changed long press vibration
All checks were successful
Pull Request Pipeline / test (pull_request) Successful in 48s
Pull Request Pipeline / lint (pull_request) Successful in 54s

This commit is contained in:
2026-05-13 13:54:01 +02:00
parent f5fbb3ecc4
commit e2882c1c6a

View File

@@ -61,7 +61,7 @@ class GameTile extends StatelessWidget {
} }
}, },
onLongPress: () async { onLongPress: () async {
await HapticFeedback.vibrate(); await HapticFeedback.heavyImpact();
if (onLongPress != null) { if (onLongPress != null) {
onLongPress!.call(); onLongPress!.call();
} }