BoxView
BoxView is a layout manager that organizes widgets in a horizontal or vertical layout.
Example
import { BoxView, Text } from '@vixen-js/core-react';import { Direction } from '@vixen-js/core';
export function BoxLayoutExample() { return ( <BoxView direction={Direction.TopToBottom}> <Text>Hello World</Text> </BoxView> )}
Learn More about BoxView