Initial basic QML app.

This commit is contained in:
2026-03-03 09:33:03 +01:00
parent b45af62629
commit ed54d5e54e
3 changed files with 64 additions and 0 deletions

8
Main.qml Normal file
View File

@ -0,0 +1,8 @@
import QtQuick
Window {
width: 640
height: 480
visible: true
title: qsTr("Hello World")
}