9 lines
182 B
QML
9 lines
182 B
QML
import QtQuick.Layouts
|
|
|
|
// Window content with navigation rail and content pane
|
|
ColumnLayout {
|
|
id: root
|
|
property bool expanded: true
|
|
property int currentIndex: 0
|
|
spacing: 5
|
|
} |