Reputation: 514
I can't figure out how to set padding between my rows in a ListView. I am trying to replicate a card style feed looks.
Upvotes: 6
Views: 4306
Reputation: 53711
Add a marginBottom
property to each ListView Item:
row: {
...
marginBottom: 2
}
I've set up a working example here.
Upvotes: 10