margin top react native code example

Example 1: react native flatlist margin bottom

<FlatList
  data={...}
  renderItem={...}
  horizontal={true}
  contentInset={{ right: 20, top: 0, left: 0, bottom: 0 }}

/>

Example 2: react native margin vs padding

padding is the space between the content and the border,
whereas margin is the space outside the border.

Example 3: react native margin

//10 of margin top, right, bottom and left
margin: 10
//margin: 'top right bottom left'
margin '10 25 0 -1'