Files
pallectrum/electrum/gui/qml/components/Scan.qml
2022-07-07 18:28:00 +02:00

23 lines
403 B
QML

import QtQuick 2.6
import QtQuick.Controls 2.0
Item {
property bool toolbar: false
QRScan {
anchors.top: parent.top
anchors.bottom: parent.bottom
width: parent.width
}
Button {
anchors.horizontalCenter: parent.horizontalCenter
id: button
anchors.bottom: parent.bottom
text: 'Cancel'
onClicked: app.stack.pop()
}
}