Files
GenericQMLApp/Main.qml

20 lines
308 B
QML
Raw Normal View History

2026-03-03 09:33:03 +01:00
import QtQuick
import QtQuick.Layouts
import QtQml.Models
2026-03-03 09:33:03 +01:00
Window {
id: window
width: 480
height: 800
2026-03-03 09:33:03 +01:00
visible: true
title: `${Application.name}`
property color textColor: "black"
property int fontSize: 16
ListPage {
id: listPage
anchors.fill: parent
}
2026-03-03 09:33:03 +01:00
}