mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-27 14:33:08 +00:00
37 lines
925 B
QML
37 lines
925 B
QML
|
|
// SPDX-FileCopyrightText: 2023 Devin Lin <devin@kde.org>
|
||
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
|
||
|
|
import QtQuick 2.15
|
||
|
|
import QtQuick.Controls 2.15
|
||
|
|
import QtQuick.Layouts 1.15
|
||
|
|
import org.kde.kirigami 2.20 as Kirigami
|
||
|
|
|
||
|
|
Item {
|
||
|
|
id: root
|
||
|
|
|
||
|
|
property string name: i18n("Complete!")
|
||
|
|
|
||
|
|
ColumnLayout {
|
||
|
|
anchors.fill: parent
|
||
|
|
anchors.margins: Kirigami.Units.gridUnit
|
||
|
|
|
||
|
|
Label {
|
||
|
|
Layout.fillWidth: true
|
||
|
|
Layout.alignment: Qt.AlignHCenter | Qt.AlignTop
|
||
|
|
text: i18n("Your device is now ready. <br /><br />Enjoy <b>Plasma 6.0</b>!")
|
||
|
|
wrapMode: Text.Wrap
|
||
|
|
horizontalAlignment: Text.AlignHCenter
|
||
|
|
}
|
||
|
|
|
||
|
|
Item { Layout.fillHeight: true }
|
||
|
|
|
||
|
|
Image {
|
||
|
|
Layout.fillWidth: true
|
||
|
|
Layout.alignment: Qt.AlignHCenter
|
||
|
|
fillMode: Image.PreserveAspectFit
|
||
|
|
source: "konqi-calling.png"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|