1
0

qml: rework drawer, split wallet details from wallet list/picker

This commit is contained in:
Sander van Grieken
2022-11-02 16:43:10 +01:00
parent 3eaebe7b47
commit 0649f13ee8
4 changed files with 58 additions and 360 deletions

View File

@@ -137,6 +137,13 @@ ApplicationWindow
function getRoot() {
return mainStackView.get(0)
}
function pushOnRoot(item) {
if (mainStackView.depth > 1) {
mainStackView.replace(mainStackView.get(1), item)
} else {
mainStackView.push(item)
}
}
}
Timer {