View

View is a React Native’s View with additional (flexbox) styling.

View


JSX Declaration

<View styleName="...">
    {...}
</View>

Style names

  • horizontal: Places all items in a row
    • h-center: Centers all items in a row horizontally
    • v-center: Centers all items in a row vertically
  • vertical: Places all items in a column
    • h-center: Centers all items in a column horizontally
    • v-center: Centers all items in a column vertically
  • wrap: Defines whether the flexible items should wrap
  • space-between: Places all flex items equally along the main axis