layoutFadeAnimation property

Animation<double> layoutFadeAnimation
latefinal

Implementation

late final layoutFadeAnimation = Tween<double>(
  begin: 1.0,
  end: 0.0,
).animate(CurvedAnimation(
  parent: _layoutFadeController,
  curve: Curves.easeOut,
));