Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. Widget build(BuildContext context) {
  2. return Scaffold(
  3. body: ConstrainedBox(
  4. constraints: BoxConstraints.tight(Size(150, 200)),
  5. child: Center(
  6. child: Container(
  7. color: Colors.blue,
  8. child: Padding(
  9. padding: EdgeInsets.all(16),
  10. child: Text(
  11. 'Box Constraints',
  12. style: TextStyle(color: Colors.orange),
  13. )),
  14. ),
  15. )),
  16. );
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement