Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. class ListViewConstructor extends StatelessWidget {
  2. @override
  3. Widget build(BuildContext context) {
  4. return ListView(
  5. children: <Widget>[
  6. Container(color: Colors.red, height: 200,),
  7. Container(height: 20,),
  8. Container(color: Colors.red, height: 200,),
  9. Container(height: 20,),
  10. Container(color: Colors.red, height: 200,),
  11. Container(height: 20,),
  12. ],
  13. );
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement