2021-01-12 17:03:39 +03:00
|
|
|
import QtQuick 2.3
|
2021-01-12 17:04:31 +03:00
|
|
|
import QtQuick.Controls 2.3
|
2020-09-14 14:57:49 +03:00
|
|
|
import QtQuick.Layouts 1.10
|
|
|
|
|
|
|
|
Pane {
|
2020-10-08 22:11:21 +03:00
|
|
|
property string title: qsTr("Successful Verification")
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
spacing: 16
|
|
|
|
|
|
|
|
Label {
|
|
|
|
id: content
|
|
|
|
|
|
|
|
Layout.maximumWidth: 400
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
|
|
|
wrapMode: Text.Wrap
|
|
|
|
text: qsTr("Verification successful! Both sides verified their devices!")
|
|
|
|
color: colors.text
|
|
|
|
verticalAlignment: Text.AlignVCenter
|
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
Item {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
|
|
|
Button {
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
text: qsTr("Close")
|
|
|
|
onClicked: dialog.close()
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-09-14 14:57:49 +03:00
|
|
|
}
|