Skip to content

Instantly share code, notes, and snippets.

@raviyadav5951
Created January 31, 2021 13:19
Show Gist options
  • Save raviyadav5951/fa640090ce96939b99b071aed1561e9f to your computer and use it in GitHub Desktop.
Save raviyadav5951/fa640090ce96939b99b071aed1561e9f to your computer and use it in GitHub Desktop.
stack.dart
Stack(
children: <Widget>[
Container(
width: 100,
height: 100,
color: Colors.red,
),
Container(
width: 90,
height: 90,
color: Colors.green,
),
Container(
width: 80,
height: 80,
color: Colors.blue,
),
],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment