Skip to content

Instantly share code, notes, and snippets.

@SandroMaglione
Created February 17, 2020 17:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SandroMaglione/d9a615f38cfeb46074b0c0357e69dd90 to your computer and use it in GitHub Desktop.
Save SandroMaglione/d9a615f38cfeb46074b0c0357e69dd90 to your computer and use it in GitHub Desktop.
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Opacity(
opacity: _controller.value,
child: Container(
height: 50,
width: 50,
color: Colors.blue,
),
),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment