Files
GenericQMLApp/Main.qml

20 lines
308 B
QML

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