Skip to content

View

View is the base class for all widgets in Qt.

You can use this class to create your own widgets, is similar to the HTML <div> in the web world.

Example

example_view.tsx
import { View, Text } from '@vixen-js/core-react';
export function ViewExample() {
return (
<View>
<Text>Hello World</Text>
</View>
)
}

Learn more about View