diff --git a/lib/presentation/widgets/buttons/main_menu_button.dart b/lib/presentation/widgets/buttons/main_menu_button.dart index c583456..5eb76f1 100644 --- a/lib/presentation/widgets/buttons/main_menu_button.dart +++ b/lib/presentation/widgets/buttons/main_menu_button.dart @@ -53,10 +53,11 @@ class _MainMenuButtonState extends State _animationController.forward(); }, onTapUp: (_) async { - await _animationController.reverse(); if (mounted) { widget.onPressed(); } + await Future.delayed(const Duration(milliseconds: 100)); + await _animationController.reverse(); }, onTapCancel: () { _animationController.reverse();