Guest User

Untitled

a guest
Jan 21st, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. Widget _bottomBar() => AppBar(
  2. title: Text(PageName.APP_BAR),
  3. bottom: PreferredSize(
  4. child: Container(
  5. alignment: Alignment.center,
  6. color: RED,
  7. constraints: BoxConstraints.expand(height: 50),
  8. child: Text(
  9. "bottom",
  10. style: TextStyle(fontSize: 30),
  11. ),
  12. ),
  13. preferredSize: Size(50, 50),
  14. ),
  15. );
Add Comment
Please, Sign In to add comment