Skip to content

Commit

Permalink
controller dispose called before super
Browse files Browse the repository at this point in the history
_slideAnimationController.dispose(); called before super.dispose()
  • Loading branch information
ibhavikmakwana authored Aug 23, 2019
1 parent 684b4c4 commit d0675b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/showcase.dart
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ class _ShowcaseState extends State<Showcase> with TickerProviderStateMixin {

@override
void dispose() {
super.dispose();
_slideAnimationController.dispose();
super.dispose();
}

@override
Expand Down

0 comments on commit d0675b8

Please sign in to comment.