Files
pay/guis/mobile/UnseenDelegate.qml
T
tomFlowee a6f0271989 Add 'seen transactions' line.
To allow an easy indication of what transactions are new since starting
the app, we insert a line between seen and unseed transactions.
2025-11-16 12:35:01 +01:00

34 lines
796 B
QML

import QtQuick
import "../Flowee" as Flowee
Item {
id: root
implicitHeight: helpText.height + 8
Rectangle {
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
text: qsTr("Seen Transactions")
font.italic: true
anchors.centerIn: parent
}
}