2025-11-13 17:06:37 +01:00
|
|
|
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")
|
2025-11-13 17:06:37 +01:00
|
|
|
anchors.centerIn: parent
|
|
|
|
|
font.bold: true
|
|
|
|
|
}
|
|
|
|
|
}
|