1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | import QtQuick 2.4
import Ubuntu.Components 1.3
import Ubuntu.Components.ListItems 1.3 as ListItem
import "components"
MainView {
// objectName for functional testing purposes (autopilot-qt5)
objectName: "mainView"
// Note! applicationName needs to match the "name" field of the click manifest
applicationName: "ubuntubeginner.aaronhoneycutt"
width: units.gu(50)
height: units.gu(75)
PageStack {
id: pageStack
Component.onCompleted: push(Qt.resolvedUrl("components/Home.qml"))
}
}
|