Live-Edit Modus #207

Merged
sneeex merged 20 commits from feature/202-live-edit-modus into development 2026-05-09 17:58:38 +00:00
Showing only changes of commit e25a2bde69 - Show all commits

View File

@@ -53,10 +53,11 @@ class _MainMenuButtonState extends State<MainMenuButton>
_animationController.forward(); _animationController.forward();
}, },
onTapUp: (_) async { onTapUp: (_) async {
await _animationController.reverse();
if (mounted) { if (mounted) {
widget.onPressed(); widget.onPressed();
} }
await Future.delayed(const Duration(milliseconds: 100));
await _animationController.reverse();
}, },
onTapCancel: () { onTapCancel: () {
_animationController.reverse(); _animationController.reverse();