From b0b05e165cfa18591673ad57cabfb0730f38d308 Mon Sep 17 00:00:00 2001 From: Deven Joshi Date: Fri, 20 Nov 2020 18:30:50 +0530 Subject: [PATCH] fix: Stop animation before pop --- lib/src/reaction_picker.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/reaction_picker.dart b/lib/src/reaction_picker.dart index 71ddcbb5..8d337498 100644 --- a/lib/src/reaction_picker.dart +++ b/lib/src/reaction_picker.dart @@ -127,7 +127,7 @@ class _ReactionPickerState extends State void pop() async { for (var a in animations) { a.stop(); - a.dispose(); + //a.dispose(); } Navigator.of(context).pop(); }