diff --git a/lib/presentation/widgets/buttons/main_menu_button.dart b/lib/presentation/widgets/buttons/main_menu_button.dart index 497fea0..c300eeb 100644 --- a/lib/presentation/widgets/buttons/main_menu_button.dart +++ b/lib/presentation/widgets/buttons/main_menu_button.dart @@ -70,11 +70,14 @@ class _MainMenuButtonState extends State const Duration(milliseconds: 400), () async { _isLongPressing = true; - await HapticFeedback.vibrate(); widget.onLongPressed?.call(); + await HapticFeedback.heavyImpact(); _repeatTimer = Timer.periodic( const Duration(milliseconds: 250), - (_) => widget.onLongPressed?.call(), + (_) async { + widget.onLongPressed?.call(); + await HapticFeedback.heavyImpact(); + }, ); }, ); diff --git a/lib/presentation/widgets/tiles/game_tile.dart b/lib/presentation/widgets/tiles/game_tile.dart index 80881d0..ee5acf0 100644 --- a/lib/presentation/widgets/tiles/game_tile.dart +++ b/lib/presentation/widgets/tiles/game_tile.dart @@ -61,7 +61,7 @@ class GameTile extends StatelessWidget { } }, onLongPress: () async { - await HapticFeedback.vibrate(); + await HapticFeedback.heavyImpact(); if (onLongPress != null) { onLongPress!.call(); }