36 lines
702 B
QML
Raw Permalink Normal View History

import QtQuick
import qs
import qs.reusables
2026-01-24 14:12:02 +01:00
import Quickshell.Widgets
import QtQuick.Layouts
2026-01-24 14:12:02 +01:00
ClippingWrapperRectangle {
id: root
2026-01-24 14:12:02 +01:00
anchors.centerIn: parent
clip: true
2026-02-15 13:50:23 +01:00
color: Colors.surfaceContainerHigh
border.width: 1
border.color: Colors.primary
2026-01-24 14:12:02 +01:00
radius: 12
margin: 20
ColumnLayout {
id: pageLayout
spacing: 0
anchors.top: parent.top
CustomText {
2026-01-26 14:28:35 +01:00
topPadding: 10
2026-01-24 14:12:02 +01:00
text: "Welcome!"
font.pixelSize: 24
font.bold: true
}
CustomText {
text: "we love women here"
}
Item {
id: sping
Layout.fillHeight: true
}
}
}