import QtQuick import "../Flowee" as Flowee Item { id: root implicitHeight: helpText.height + 15 Rectangle { width: helpText.implicitWidth + 30 anchors.horizontalCenter: parent.horizontalCenter anchors.bottom: parent.bottom height: helpText.height + 3 // 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 } } topLeftRadius: 10 topRightRadius: 10 } Rectangle { width: root.width height: 1 anchors.bottom: parent.bottom color: palette.midlight } Flowee.Label { id: helpText text: qsTr("Seen Transactions") font.italic: true anchors.bottom: parent.bottom anchors.horizontalCenter: parent.horizontalCenter } }