1
0

add initial Transaction Details page and backing qobject

This commit is contained in:
Sander van Grieken
2022-05-10 13:26:48 +02:00
parent e78a239bf5
commit a6e72ae42f
6 changed files with 423 additions and 0 deletions

View File

@@ -66,6 +66,14 @@ Pane {
Layout.fillWidth: true
Layout.preferredHeight: txinfo.height
onClicked: {
var page = app.stack.push(Qt.resolvedUrl('TxDetails.qml'), {'txid': model.txid})
page.txDetailsChanged.connect(function() {
// update listmodel when details change
visualModel.model.update_tx_label(model.txid, page.label)
})
}
GridLayout {
id: txinfo
columns: 3