Files

45 lines
1.1 KiB
QML
Raw Permalink Normal View History

import QtQuick
import "../Flowee" as Flowee
Item {
id: root
2026-02-10 17:25:17 +01:00
implicitHeight: helpText.height + 15
Rectangle {
2026-02-10 17:25:17 +01:00
width: helpText.implicitWidth + 30
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: parent.bottom
height: helpText.height + 3
// color: palette.light
2025-11-13 22:38:40 +01:00
border.width: 1
border.color: palette.midlight
gradient: Gradient {
orientation: Gradient.Horizontal
GradientStop {
position: Pay.useDarkSkin ? -2 : 0
color: Pay.useDarkSkin ? palette.midlight : palette.mid
}
GradientStop {
position: 1
color: palette.base
}
}
2026-02-10 17:25:17 +01:00
topLeftRadius: 10
topRightRadius: 10
}
2026-02-10 17:25:17 +01:00
Rectangle {
width: root.width
height: 1
anchors.bottom: parent.bottom
color: palette.midlight
}
Flowee.Label {
id: helpText
2025-11-13 22:38:40 +01:00
text: qsTr("Seen Transactions")
font.italic: true
2026-02-10 17:25:17 +01:00
anchors.bottom: parent.bottom
anchors.horizontalCenter: parent.horizontalCenter
}
}