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 color textColor: "black"
|
|
|
|
|
property int fontSize: 16
|
2026-03-04 19:56:12 +01:00
|
|
|
|
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
|
|
|
}
|