Skip to content

Instantly share code, notes, and snippets.

@ncuillery
Last active April 21, 2020 13:25
Show Gist options
  • Select an option

  • Save ncuillery/8f86477e7e360cfd2c9c90929ebb4460 to your computer and use it in GitHub Desktop.

Select an option

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