23 lines
403 B
QML
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()
|
|
}
|
|
|
|
}
|