Compare commits

...

2 commits

Author SHA1 Message Date
Marcus
2e40612e19
Merge 16cce08b43 into 25e552c6fa 2024-09-12 08:34:32 +02:00
Marcus Hoffmann
16cce08b43 WelcomePage: add vertical ScrollView around content
This solves the problem of the window being sized smaller than it's
content and part of it being out of view.
2024-05-15 00:33:03 +02:00

View file

@ -10,7 +10,11 @@ import im.nheko 1.0
import "../components/"
import ".."
ColumnLayout {
ScrollView {
contentWidth: availableWidth
ColumnLayout {
width: parent.width
Item {
Layout.fillHeight: true
}
@ -29,7 +33,7 @@ ColumnLayout {
Layout.fillWidth: true
text: qsTr("Welcome to nheko! The desktop client for the Matrix protocol.")
color: palette.text
font.pointSize: fontMetrics.font.pointSize*2
font.pointSize: fontMetrics.font.pointSize * 2
wrapMode: Text.Wrap
horizontalAlignment: Text.AlignHCenter
}
@ -39,7 +43,7 @@ ColumnLayout {
Layout.fillWidth: true
text: qsTr("Enjoy your stay!")
color: palette.text
font.pointSize: fontMetrics.font.pointSize*1.5
font.pointSize: fontMetrics.font.pointSize * 1.5
wrapMode: Text.Wrap
horizontalAlignment: Text.AlignHCenter
}
@ -99,4 +103,5 @@ ColumnLayout {
Item {
Layout.fillHeight: true
}
}
}