Add navigation toolbar (#1)

* Add preferences view skeleton

* Add toolbar & help button

* Add working back button

* Title of page in toolbar

* Remove unused imports

* Make comments better!

* Remove unused drawer element

* Remove superfluous > 1 check

* Use point size font instead of pixel size

* Add AppView page title
This commit is contained in:
Michelle Bergeron
2018-07-07 22:15:02 -07:00
committed by Cameron Gutman
parent 1bfec3a032
commit b630c07653
8 changed files with 71 additions and 0 deletions
+2
View File
@@ -17,6 +17,7 @@ GridView {
anchors.bottomMargin: 5
cellWidth: 350; cellHeight: 350;
focus: true
objectName: "Computers"
Component.onCompleted: {
// Start polling when this view is shown
@@ -135,6 +136,7 @@ GridView {
var component = Qt.createComponent("AppView.qml")
var appView = component.createObject(stackView)
appView.computerIndex = index
appView.objectName = "Apps on " + model.name
stackView.push(appView)
}
else {