Skip to content

Instantly share code, notes, and snippets.

@ncuillery
Last active April 21, 2020 13:25
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 ncuillery/8f86477e7e360cfd2c9c90929ebb4460 to your computer and use it in GitHub Desktop.
Save ncuillery/8f86477e7e360cfd2c9c90929ebb4460 to your computer and use it in GitHub Desktop.
Center(
child: Text('Hello Flutter community'),
)
// equivalent to:
Container(
alignment: Alignment(0, 0),
child: Text('Hello Flutter community'),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment