mirror of
https://github.com/celesrenata/end-4-flakes.git
synced 2026-06-05 18:29:26 -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
|
|
}
|