mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-29 04:14:52 +03:00
10 lines
218 B
QML
10 lines
218 B
QML
import QtQuick 2.0
|
|
import QtQuick.Dialogs 1.2
|
|
|
|
MessageDialog {
|
|
icon: StandardIcon.Information
|
|
title: qsTr("Password set")
|
|
text: qsTr("A new password has been set.")
|
|
standardButtons: StandardButton.Ok
|
|
}
|