19 lines
373 B
QML
19 lines
373 B
QML
import QtQuick 2.7
|
|
import Ubuntu.Components 1.3
|
|
import QtQuick.Layouts 1.3
|
|
|
|
MainView {
|
|
id: root
|
|
objectName: 'mainView'
|
|
applicationName: 'pantalaimon.thrrgilag'
|
|
automaticOrientation: true
|
|
|
|
width: units.gu(45)
|
|
height: units.gu(75)
|
|
|
|
PageStack {
|
|
id: pageStack
|
|
|
|
Component.onCompleted: push(Qt.resolvedUrl('SettingsPage.qml'))
|
|
}
|
|
}
|