Advertisement
lietschie

Untitled

Jul 23rd, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. return Container(
  2. child: new GridView.count(
  3. crossAxisCount: 2,
  4. children: new List<Widget>.generate(16, (index) {
  5. return new GridTile(
  6. child: new Card(
  7. color: Colors.white70,
  8. margin: EdgeInsets.all(8.0),
  9.  
  10.  
  11. child: Column(
  12. mainAxisAlignment: MainAxisAlignment.spaceBetween,
  13.  
  14. children: <Widget>[
  15. Image.network('https://raw.githubusercontent.com/flutter/website/master/_includes/code/layout/lakes/images/lake.jpg', {BoxFit:BoxFit.fill}),
  16. Padding(
  17. padding: EdgeInsets.all(8.0),
  18.  
  19. child: new Center(
  20. child: Text("wtf"),
  21. ),
  22. ),
  23. Padding(
  24. padding: EdgeInsets.all(8.0),
  25.  
  26. child: new Center(
  27. child: Text("Rp.20.000"),
  28. ),
  29. ),
  30.  
  31.  
  32. ],
  33. )
  34. )
  35. );
  36. }),
  37. ),
  38. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement