qt-layouts

Installation
SKILL.md

Qt Layout Managers

Layout Hierarchy

Qt lays out widgets using layout objects attached to containers. Never call setGeometry() manually — use layouts.

QWidget (parent)
└── QVBoxLayout (attached via setLayout or constructor arg)
    ├── QLabel
    ├── QHBoxLayout (nested)
    │   ├── QPushButton
    │   └── QPushButton
    └── QTextEdit

Core Layout Types

Installs
18
GitHub Stars
5
First Seen
Feb 27, 2026
qt-layouts — l3digital-net/claude-code-plugins