We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 043f6e0 + b058929 commit c965662Copy full SHA for c965662
lib/scaffold.dart
@@ -261,6 +261,16 @@ class BackdropScaffoldState extends State<BackdropScaffold>
261
_headerHeight = _getHeaderHeight();
262
});
263
264
+
265
+ _controller.addStatusListener((status) {
266
+ setState(() {
267
+ // This is intentionally left empty. The state change itself takes
268
+ // place inside the AnimationController, so there's nothing to update.
269
+ // All we want is for the widget to rebuild and read the new animation
270
+ // state from the AnimationController.
271
+ // see https://github.com/flutter/flutter/pull/55414/commits/72d7d365be6639271a5e88ee3043b92833facb79
272
+ });
273
274
}
275
276
@override
0 commit comments