QBoxLayout
QBoxLayout es un gestor de layout que organiza los widgets en un layout horizontal o vertical.
Ejemplo
import { QBoxLayout, QCalendarWidget, QWidget} from '@vixen-js/core';
const widget = new QWidget();const box = new QBoxLayout(0);
box.addWidget(new QCalendarWidget());box.addWidget(new QCalendarWidget());
widget.setLayout(box);
Aprende mas sobre QBoxLayout
en: https://doc.qt.io/qt-6/qboxlayout.html