CVStack
This component is inherited from Stack
See also: CHStack, HStack, VStack
CVStack is a specialized, shorthand version for the regular Stack component with a vertical orientation centered on its contents.
<App>
<CVStack width="33%" backgroundColor="cyan">
<Stack height="32px" width="32px" backgroundColor="red" />
<Stack height="32px" width="32px" backgroundColor="blue" />
<Stack height="32px" width="32px" backgroundColor="green" />
</CVStack>
</App>Example: CVStack
<App>
<CVStack width="33%" backgroundColor="cyan">
<Stack height="32px" width="32px" backgroundColor="red" />
<Stack height="32px" width="32px" backgroundColor="blue" />
<Stack height="32px" width="32px" backgroundColor="green" />
</CVStack>
</App>You cannot change the orientation of
CVStackfrom vertical to horizontal by setting theorientationprop, as the engine ignores that setting.