mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-07-26 06:14:45 +00:00
Add "Powered by distro" to initialsetup/LandingComponent
This is a recreation of !581.
This commit is contained in:
parent
6eacb241f7
commit
817c1ffb65
1 changed files with 27 additions and 1 deletions
|
|
@ -101,13 +101,39 @@ Item {
|
||||||
Label {
|
Label {
|
||||||
Layout.fillWidth: true
|
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
|
horizontalAlignment: Text.AlignHCenter
|
||||||
wrapMode: Text.Wrap
|
wrapMode: Text.Wrap
|
||||||
|
|
||||||
font.pointSize: 18
|
font.pointSize: 18
|
||||||
color: "white"
|
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 {
|
Button {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue