mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
41 lines
839 B
QML
41 lines
839 B
QML
// SPDX-FileCopyrightText: Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import QtQuick 2.3
|
|
import QtQuick.Controls 2.3
|
|
import QtQuick.Layouts 1.10
|
|
import im.nheko 1.0
|
|
|
|
ColumnLayout {
|
|
property string title: qsTr("Successful Verification")
|
|
|
|
spacing: 16
|
|
|
|
Label {
|
|
id: content
|
|
|
|
Layout.preferredWidth: 400
|
|
Layout.fillWidth: true
|
|
wrapMode: Text.Wrap
|
|
text: qsTr("Verification successful! Both sides verified their devices!")
|
|
color: palette.text
|
|
verticalAlignment: Text.AlignVCenter
|
|
}
|
|
|
|
Item { Layout.fillHeight: true; }
|
|
|
|
RowLayout {
|
|
Item {
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
Button {
|
|
Layout.alignment: Qt.AlignRight
|
|
text: qsTr("Close")
|
|
onClicked: dialog.close()
|
|
}
|
|
|
|
}
|
|
|
|
}
|