1
0
mirror of https://github.com/QRouland/UTPass.git synced 2025-01-26 00:26:40 +00:00
UTPass/qml/dialogs/SuccessDialog.qml

24 lines
383 B
QML
Raw Normal View History

import Lomiri.Components 1.3
import Lomiri.Components.Popups 1.3
2025-01-10 15:28:42 +01:00
import QtQuick 2.4
2019-09-20 21:29:39 +02:00
Dialog {
id: dialog
2019-09-20 21:29:39 +02:00
property string textSuccess
2025-01-10 15:28:42 +01:00
signal dialogClosed()
2019-09-20 21:29:39 +02:00
title: i18n.tr("Success !")
text: textSuccess
2025-01-10 15:28:42 +01:00
2019-09-20 21:29:39 +02:00
Button {
text: i18n.tr("OK")
2025-01-10 15:28:42 +01:00
onClicked: function() {
dialogClosed();
PopupUtils.close(dialog);
2019-09-20 21:29:39 +02:00
}
}
2025-01-10 15:28:42 +01:00
2019-09-20 21:29:39 +02:00
}