forked from Shinonome/dots-hyprland
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
|
|
}
|