CVStack
This component is inherited from Stack
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 ofCVStack
from vertical to horizontal by setting theorientation
prop, as the engine ignores that setting.