2025-11-13 17:06:37 +01:00
|
|
|
import QtQuick
|
|
|
|
|
import QtQuick.Controls.Basic as QQC2
|
|
|
|
|
import "../Flowee" as Flowee
|
|
|
|
|
|
|
|
|
|
Item {
|
|
|
|
|
id: root
|
2026-02-10 17:25:17 +01:00
|
|
|
implicitHeight: helpText.height + 25
|
2025-11-13 17:06:37 +01:00
|
|
|
|
2026-02-13 18:25:52 +01:00
|
|
|
Item {
|
|
|
|
|
clip: true
|
|
|
|
|
width: helpText.implicitWidth + 36
|
2025-11-13 17:06:37 +01:00
|
|
|
height: parent.height - 15
|
2026-02-10 17:25:17 +01:00
|
|
|
anchors.bottom: parent.bottom
|
2025-11-13 17:06:37 +01:00
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
2026-02-13 18:25:52 +01:00
|
|
|
Rectangle {
|
|
|
|
|
width: parent.width
|
|
|
|
|
height: parent.height
|
|
|
|
|
y: 1
|
|
|
|
|
topLeftRadius: 50
|
|
|
|
|
topRightRadius: 50
|
|
|
|
|
border.width: 1
|
|
|
|
|
border.color: palette.midlight
|
|
|
|
|
gradient: Gradient {
|
|
|
|
|
GradientStop {
|
|
|
|
|
position: -0.2
|
|
|
|
|
color: palette.base
|
|
|
|
|
}
|
|
|
|
|
GradientStop {
|
|
|
|
|
position: Pay.useDarkSkin ? 3 : 1
|
|
|
|
|
color: Pay.useDarkSkin ? palette.midlight : palette.mid
|
|
|
|
|
}
|
2026-02-10 17:25:17 +01:00
|
|
|
}
|
|
|
|
|
}
|
2025-11-13 17:06:37 +01:00
|
|
|
}
|
2026-02-13 18:25:52 +01:00
|
|
|
|
2025-11-13 17:06:37 +01:00
|
|
|
Flowee.Label {
|
|
|
|
|
id: helpText
|
2025-11-13 22:38:40 +01:00
|
|
|
text: qsTr("Seen Transactions")
|
2026-02-10 17:25:17 +01:00
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
2025-11-13 17:06:37 +01:00
|
|
|
font.bold: true
|
|
|
|
|
}
|
|
|
|
|
}
|