import QtQuick import QtQuick.Controls.Basic as QQC2 import "../Flowee" as Flowee Item { id: root implicitHeight: helpText.height + 31 Rectangle { width: Math.min(400, root.width) height: parent.height - 15 color: palette.base radius: 6 y: 10 anchors.horizontalCenter: parent.horizontalCenter } Flowee.Label { id: helpText text: qsTr("Seen Transactions") anchors.centerIn: parent font.bold: true } }