add nav back icon & complete c++ invoke qml nav push

This commit is contained in:
王劲鹏
2021-06-09 10:09:24 +08:00
committed by osborn
parent 7fe12e769e
commit dba0569256
4 changed files with 14 additions and 18 deletions

View File

@@ -7,10 +7,11 @@ ApplicationWindow {
height: 800
title: qsTr("Doric Demo")
Rectangle {
StackView {
id: stack
objectName: "stackView"
anchors.fill: parent
ScrollView {
initialItem: ScrollView {
id: entry
anchors.fill: parent
@@ -88,14 +89,9 @@ ApplicationWindow {
}
}
}
onChildrenChanged: {
stack.push(this.children[this.children.length - 1])
}
}
StackView {
id: stack
anchors.fill: parent
function navigatorPush(page) {
stack.push(page)
}
}