33 lines
720 B
QML
33 lines
720 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQml.Models
|
|
|
|
Window {
|
|
id: window
|
|
width: 480
|
|
height: 800
|
|
visible: true
|
|
title: `${Application.name}`
|
|
|
|
property int fontSize: 16
|
|
|
|
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"
|
|
|
|
ListPage {
|
|
id: listPage
|
|
anchors.fill: parent
|
|
}
|
|
}
|