Files
pay/guis/mobile/UnseenDelegate.qml
T

34 lines
796 B
QML
Raw Permalink Normal View History

import QtQuick
import "../Flowee" as Flowee
Item {
id: root
2025-11-13 22:38:40 +01:00
implicitHeight: helpText.height + 8
Rectangle {
2025-11-13 22:38:40 +01:00
width: parent.width - 16
x: 8
height: parent.height
color: palette.light
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
}
}
}
Flowee.Label {
id: helpText
2025-11-13 22:38:40 +01:00
text: qsTr("Seen Transactions")
font.italic: true
anchors.centerIn: parent
}
}