Files
pay/guis/desktop/UnseenDelegate.qml
T
tomFlowee a6f0271989 Add 'seen transactions' line.
To allow an easy indication of what transactions are new since starting
the app, we insert a line between seen and unseed transactions.
2025-11-16 12:35:01 +01:00

24 lines
506 B
QML

import QtQuick
import QtQuick.Controls.Basic as QQC2
import "../Flowee" as Flowee
Item {
id: root
implicitHeight: helpText.height + 31
Rectangle {
width: Math.min(400, root.width)
height: parent.height - 15
color: palette.base
radius: 6
y: 10
anchors.horizontalCenter: parent.horizontalCenter
}
Flowee.Label {
id: helpText
text: qsTr("Seen Transactions")
anchors.centerIn: parent
font.bold: true
}
}