mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-06 07:19:27 -05:00
13 lines
300 B
QML
13 lines
300 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import "root:/modules/common/"
|
|
import "root:/modules/common/widgets/"
|
|
|
|
ColumnLayout { // Window content with navigation rail and content pane
|
|
id: root
|
|
property bool expanded: true
|
|
property int currentIndex: 0
|
|
spacing: 5
|
|
}
|