mirror of
https://github.com/PancakeTAS/lsfg-vk.git
synced 2026-04-24 19:32:17 +00:00
Some checks are pending
(CI) lsfg-vk / build (push) Waiting to run
(CI/Flatpak) lsfg-vk / flatpak-extensions (23.08) (push) Waiting to run
(CI/Flatpak) lsfg-vk / flatpak-extensions (24.08) (push) Waiting to run
(CI/Flatpak) lsfg-vk / flatpak-extensions (25.08) (push) Waiting to run
(CI/Flatpak) lsfg-vk / flatpak-ui (push) Waiting to run
for some reason one the Steam Deck pixels don't quite mean pixels
50 lines
909 B
QML
50 lines
909 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
RowLayout {
|
|
property string title
|
|
property string description
|
|
default property alias content: inner.children
|
|
|
|
id: root
|
|
spacing: 12
|
|
|
|
ColumnLayout {
|
|
clip: true
|
|
|
|
ColumnLayout {
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
spacing: 0
|
|
|
|
Label {
|
|
text: root.title
|
|
font.bold: true
|
|
}
|
|
|
|
Label {
|
|
text: root.description
|
|
color: Qt.rgba(
|
|
palette.text.r,
|
|
palette.text.g,
|
|
palette.text.b,
|
|
0.7
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
Item {
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
ColumnLayout {
|
|
spacing: 0
|
|
id: inner
|
|
}
|
|
}
|
|
|
|
|
|
}
|