From 817c1ffb6574bf3c0d4f7490ba6ff30158284fc0 Mon Sep 17 00:00:00 2001 From: User8395 Date: Tue, 8 Oct 2024 15:49:32 +0000 Subject: [PATCH] Add "Powered by distro" to initialsetup/LandingComponent This is a recreation of !581. --- initialstart/qml/LandingComponent.qml | 28 ++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/initialstart/qml/LandingComponent.qml b/initialstart/qml/LandingComponent.qml index bec4f8ab..16d76e4f 100644 --- a/initialstart/qml/LandingComponent.qml +++ b/initialstart/qml/LandingComponent.qml @@ -101,13 +101,39 @@ Item { Label { Layout.fillWidth: true - text: i18n("Welcome to
%1", InitialStartUtil.distroName) + text: i18n("Welcome to
Plasma Mobile") horizontalAlignment: Text.AlignHCenter wrapMode: Text.Wrap font.pointSize: 18 color: "white" } + + } + + ColumnLayout { + opacity: root.contentOpacity + spacing: Kirigami.Units.largeSpacing + + anchors { + left: parent.left + right: parent.right + bottom: parent.bottom + leftMargin: Kirigami.Units.gridUnit * 4 + rightMargin: Kirigami.Units.gridUnit * 4 + bottomMargin: Kirigami.Units.gridUnit * 2 + } + + + Kirigami.Heading { + Layout.fillWidth: true + text: i18n("Powered by
%1", InitialStartUtil.distroName) + horizontalAlignment: Text.AlignHCenter + wrapMode: Text.Wrap + + level: 5 + color: "white" + } } Button {