Skip to content

Instantly share code, notes, and snippets.

@fabrizzioRP
Last active December 23, 2021 23:28
Show Gist options
  • Save fabrizzioRP/948cdbe81a9611be135cb27cd13d928b to your computer and use it in GitHub Desktop.
Save fabrizzioRP/948cdbe81a9611be135cb27cd13d928b to your computer and use it in GitHub Desktop.
Dart: Rectangle Container
final Widget rectangle = Container(
width : 150,
height : 70,
color : Colors.red,
child : Center(
child : Text('Rectangle'),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment