add qml file

This commit is contained in:
lordwelch 2016-01-13 15:50:29 -08:00
parent b598ee8ba1
commit db4f8e1d61

36
main.qml Normal file
View File

@ -0,0 +1,36 @@
import QtQuick 2.5
import QtQuick.Controls 1.3
ApplicationWindow {
title: "Presentation App"
visible: true
objectName: qsTr("")
minimumWidth: 500
minimumHeight: 500
Grid {
id: grid1
x: 155
y: 157
width: 142
height: 143
clip: false
columns: 2
antialiasing: true
z: 0
rotation: 0
scale: 1
transformOrigin: Item.Center
Column {
TextArea {
text: "test"
}
}
Column {
}
}
}