fix: Stop animation before pop

This commit is contained in:
Deven Joshi
2020-11-20 18:30:50 +05:30
parent ee5cec3c45
commit b0b05e165c
+1 -1
View File
@@ -127,7 +127,7 @@ class _ReactionPickerState extends State<ReactionPicker>
void pop() async {
for (var a in animations) {
a.stop();
a.dispose();
//a.dispose();
}
Navigator.of(context).pop();
}