Skip to content

Instantly share code, notes, and snippets.

@Rahiche
Created December 13, 2018 19:49
Show Gist options
  • Save Rahiche/f80af748f7330c6edf49bf4bd7521b1a to your computer and use it in GitHub Desktop.
Save Rahiche/f80af748f7330c6edf49bf4bd7521b1a to your computer and use it in GitHub Desktop.
child: AnimatedSwitcher(
child: isVisible
? Container(
key: UniqueKey(),
height: 100.0,
width: 100.0,
color: Colors.red,
)
: Container(
key: UniqueKey(),
height: 100.0,
width: 100.0,
color: Colors.blue,
),
duration: Duration(seconds: 2),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment