Initial minimal project.

This commit is contained in:
Rasim Labibov
2017-10-18 14:47:07 +03:00
parent 624ef51102
commit 52edfb0e6b
8 changed files with 153 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import QtQuick 2.6
import QtQuick.Layouts 1.0
import QtQuick.Controls 1.0
ApplicationWindow
{
visible: true
width: 640
height: 480
title: qsTr("Minimal Qml")
}