VStack

This component is inherited from Stack

See also: CHStack, CVStack, HStack

VStack is a specialized, shorthand version for the regular Stack component with a vertical orientation. See also: HStack, CHStack, CVStack.

<App>
  <VStack>
    <Stack height="32px" width="32px" backgroundColor="red" />
    <Stack height="32px" width="32px" backgroundColor="blue" />
    <Stack height="32px" width="32px" backgroundColor="green" />
  </VStack>
</App>

Examples

đź“”

You cannot change the orientation of VStack from vertical to horizontal by setting the orientation prop, as the engine ignores that setting.