mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-29 04:14:52 +03:00
10 lines
269 B
QML
10 lines
269 B
QML
import QtQuick 2.5
|
|
import QtQuick.Dialogs 1.2
|
|
|
|
MessageDialog {
|
|
icon: StandardIcon.Warning
|
|
title: qsTr("No QR code found")
|
|
text: qsTr("Could not find a QR code. Make sure the QR code is fully visible on the screen.")
|
|
standardButtons: StandardButton.Ok
|
|
}
|