Minor feature added.

square-messages
Black Hat 2018-03-01 19:56:02 +08:00
parent 962f49a3d0
commit b0fc5d0728
2 changed files with 14 additions and 3 deletions

View File

@ -29,7 +29,7 @@ Item {
anchors.fill: parent
onClicked: {
if(page != null) {
if(page != null && stackView.currentItem != page) {
if(stackView.depth === 1) {
stackView.replace(page)
} else {

View File

@ -71,8 +71,19 @@ Item {
Layout.fillHeight: true
padding: 0
background: Rectangle {
color: "#eaeaea"
background: Item {
anchors.fill: parent
Rectangle {
anchors.fill: parent
color: "#eaeaea"
}
Text {
z: 10
text: "Here? No, not here."
anchors.centerIn: parent
visible: listView.count === 0
}
}
ListView {