nosignal-shell/modules/nexus/pages/wallandstyle/ColourSelect.qml
2026-06-05 22:30:38 +10:00

47 lines
1.3 KiB
QML

import QtQuick
import QtQuick.Layouts
import Caelestia.Config
import qs.components
import qs.services
import qs.modules.nexus.common
PageBase {
id: root
title: qsTr("Colours")
isSubPage: true
Item {
anchors.horizontalCenter: parent.horizontalCenter
implicitHeight: {
const f = parent.parent as Flickable;
return f.height - f.topMargin - f.bottomMargin;
}
ColumnLayout {
anchors.centerIn: parent
spacing: Tokens.padding.extraSmall
MaterialIcon {
Layout.alignment: Qt.AlignHCenter
text: "handyman"
color: Colours.palette.m3outlineVariant
font: Tokens.font.icon.extraLarge
}
StyledText {
Layout.alignment: Qt.AlignHCenter
text: qsTr("Page under construction")
color: Colours.palette.m3outlineVariant
font: Tokens.font.title.large
}
StyledText {
Layout.alignment: Qt.AlignHCenter
text: qsTr("This page will be available in a future update.")
color: Colours.palette.m3outlineVariant
font: Tokens.font.body.large
}
}
}
}