UTPassMirror/qml/Main.qml

25 lines
495 B
QML
Raw Normal View History

2019-03-13 18:38:12 +00:00
import QtQuick 2.4
import QtQuick.Layouts 1.1
import Ubuntu.Components 1.3
2019-03-16 15:18:05 +00:00
import Pass 1.0
2019-03-13 18:38:12 +00:00
2019-03-15 16:53:40 +00:00
import "components"
2019-03-13 18:38:12 +00:00
MainView {
id: root
objectName: "mainView"
applicationName: "utpass.qrouland"
2019-03-15 16:53:40 +00:00
2019-03-13 18:38:12 +00:00
automaticOrientation: true
width: units.gu(45)
height: units.gu(75)
2019-03-15 16:53:40 +00:00
PageStack {
id: pageStack
2019-03-13 18:38:12 +00:00
anchors.fill: parent
2019-03-15 16:53:40 +00:00
Component.onCompleted: push(pageStack.push(Qt.resolvedUrl("pages/PasswordList.qml")))
2019-03-13 18:38:12 +00:00
}
2019-03-16 15:18:05 +00:00
Component.onCompleted: Pass.speak()
2019-03-13 18:38:12 +00:00
}