Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. GridView.count(
  2. padding: EdgeInsets.all(4.0),
  3. crossAxisCount: 2,
  4. children: List.generate(model.productList.length, (index) {
  5. final product = model.productList[index];
  6. return (ProductItemCard(product: product));
  7. })
  8. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement