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