Last active
December 23, 2021 23:28
-
-
Save fabrizzioRP/948cdbe81a9611be135cb27cd13d928b to your computer and use it in GitHub Desktop.
Dart: Rectangle Container
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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