Layouts

As we know in PySide6.QtWidgets.Layout there are add functions, so we write children argument, that function will be executed with the value inserted.

Usage

from Qtica.layouts import GridLayout

GridLayout(
    children=[
        QWidget | QLayout | ...
    ]
)

Last updated

Was this helpful?