Margin or Padding Shorthand in React Native

When using plain React Native styles you can rewrite your css above to

{
  marginVertical: 10,
  marginHorizontal: 20
}

Otherwise the above syntax can be achieved if you’re using something like styled-components, which uses css-to-react-native under the hood.

Leave a Comment