Files
pay/guis/desktop/UnseenDelegate.qml
T

24 lines
506 B
QML
Raw Permalink Normal View History

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
2025-11-13 22:38:40 +01:00
text: qsTr("Seen Transactions")
anchors.centerIn: parent
font.bold: true
}
}