import QtQuick import QtQuick.Controls.Basic as QQC2 import "../Flowee" as Flowee Item { id: root implicitHeight: helpText.height + 25 Item { clip: true width: helpText.implicitWidth + 36 height: parent.height - 15 anchors.bottom: parent.bottom anchors.horizontalCenter: parent.horizontalCenter 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 } } } } Flowee.Label { id: helpText text: qsTr("Seen Transactions") anchors.bottom: parent.bottom anchors.horizontalCenter: parent.horizontalCenter font.bold: true } }