mirror of
https://github.com/OpenVoiceOS/OpenVoiceOS
synced 2025-02-15 03:10:56 +01:00
25 lines
509 B
QML
25 lines
509 B
QML
import QtQuick.Layouts 1.4
|
|
import QtQuick 2.4
|
|
import QtQuick.Controls 2.0
|
|
import org.kde.kirigami 2.5 as Kirigami
|
|
import Mycroft 1.0 as Mycroft
|
|
|
|
Mycroft.Delegate {
|
|
id: mainLoaderView
|
|
|
|
property var pageType: sessionData.page_type
|
|
leftPadding: 0
|
|
rightPadding: 0
|
|
bottomPadding: 0
|
|
topPadding: 0
|
|
|
|
contentItem: Loader {
|
|
id: rootLoader
|
|
}
|
|
|
|
onPageTypeChanged: {
|
|
console.log(sessionData.page_type)
|
|
rootLoader.setSource(sessionData.page_type + ".qml")
|
|
}
|
|
}
|