Brackets
Brackets

Reputation: 514

React Native: Set space between rows in a ListView

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

Answers (1)

Nader Dabit
Nader Dabit

Reputation: 53711

Add a marginBottom property to each ListView Item:

row: {
  ...
  marginBottom: 2
}

I've set up a working example here.

enter image description here

Upvotes: 10

Related Questions