1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2025-09-05 18:22:46 +00:00

QtQuick background test

This commit is contained in:
Chris Josten 2021-02-16 18:01:17 +01:00
parent 8552e08a12
commit 4453492204
6 changed files with 74 additions and 3 deletions

14
qtquick/qml/main.qml Normal file
View file

@ -0,0 +1,14 @@
import QtQuick 2.12
import QtQuick.Window 2.12
import "components"
Window {
width: 600
height: 600
visible: true
Background {
anchors.fill: parent
}
}