Add "Powered by distro" to initialsetup/LandingComponent

This is a recreation of !581.
This commit is contained in:
User8395 2024-10-08 15:49:32 +00:00 committed by Devin Lin
parent 6eacb241f7
commit 817c1ffb65

View file

@ -101,13 +101,39 @@ Item {
Label {
Layout.fillWidth: true
text: i18n("Welcome to<br/><b>%1</b>", InitialStartUtil.distroName)
text: i18n("Welcome to<br/><b>Plasma Mobile</b>")
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<br/><b>%1</b>", InitialStartUtil.distroName)
horizontalAlignment: Text.AlignHCenter
wrapMode: Text.Wrap
level: 5
color: "white"
}
}
Button {