Description:
A convenience widget that wraps a QVBoxLayout.
Allows quick vertical stacking of widgets.
from VertexEngine.Vertex import VBox
from PyQt6.QtWidgets import QLabel
box = VBox()
box.add(QLabel("Hello"))
box.add(QLabel("World"))
add(widget)A vertical layout container.