2026-03-03 09:33:03 +01:00
|
|
|
import QtQuick
|
2026-03-04 19:56:12 +01:00
|
|
|
import QtQuick.Layouts
|
|
|
|
|
import QtQml.Models
|
2026-03-03 09:33:03 +01:00
|
|
|
|
|
|
|
|
Window {
|
2026-03-05 10:53:52 +01:00
|
|
|
id: window
|
|
|
|
|
width: 480
|
|
|
|
|
height: 800
|
2026-03-03 09:33:03 +01:00
|
|
|
visible: true
|
2026-03-05 10:53:52 +01:00
|
|
|
title: `${Application.name}`
|
2026-03-03 18:58:34 +01:00
|
|
|
|
2026-03-05 10:53:52 +01:00
|
|
|
property int fontSize: 16
|
2026-03-04 19:56:12 +01:00
|
|
|
|
2026-03-06 10:41:47 +01:00
|
|
|
property color textColor: "black"
|
|
|
|
|
|
|
|
|
|
property color wccDarkDark: "#010101"
|
|
|
|
|
property color wccDarkDefault: "#3C3B3B"
|
|
|
|
|
property color wccDarkLight: "#828282"
|
|
|
|
|
|
|
|
|
|
property color wccPurpleDark: "#631A61"
|
|
|
|
|
property color wccPurpleDefault: "#A834A5"
|
|
|
|
|
property color wccPurpleLight: "#E88FE5"
|
|
|
|
|
|
|
|
|
|
property color wccLavenderDark: "#8C52FF"
|
|
|
|
|
property color wccLavenderDefault: "#9D74EE"
|
|
|
|
|
property color wccLavenderLight: "#BC9AFF"
|
|
|
|
|
|
2026-03-05 10:53:52 +01:00
|
|
|
ListPage {
|
|
|
|
|
id: listPage
|
|
|
|
|
anchors.fill: parent
|
2026-03-03 18:58:34 +01:00
|
|
|
}
|
2026-03-03 09:33:03 +01:00
|
|
|
}
|