Advertisement
Guest User

Untitled

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