Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ScottS2017/10ffcb0a6396a7ce7765334ad0988966 to your computer and use it in GitHub Desktop.
Save ScottS2017/10ffcb0a6396a7ce7765334ad0988966 to your computer and use it in GitHub Desktop.
void main() {
runApp(
Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Flexible(
fit: FlexFit.loose,
child: Container(
color: Colors.blue,
height: 100,
width: 100,
),
),
],
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment