// SPDX-FileCopyrightText: 2023 Devin Lin // 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 as Kirigami import org.kde.plasma.mobileinitialstart.initialstart InitialStartModule { name: i18n("Complete!") contentItem: Item { id: root ColumnLayout { anchors.fill: parent anchors.margins: Kirigami.Units.gridUnit spacing: Kirigami.Units.gridUnit Item { Layout.fillHeight: true } Kirigami.Icon { Layout.alignment: Qt.AlignHCenter Layout.preferredWidth: Kirigami.Units.iconSizes.huge Layout.preferredHeight: Kirigami.Units.iconSizes.huge source: "start-here-shift" } Label { Layout.fillWidth: true Layout.alignment: Qt.AlignHCenter text: i18n("Your device is ready.

SHIFT will start with the %1 experience.", SetupState.experienceProfile) wrapMode: Text.Wrap horizontalAlignment: Text.AlignHCenter } Item { Layout.fillHeight: true } } } }