Intial commit for files

This commit is contained in:
Tal Lancaster
2017-01-17 13:05:46 -07:00
parent 3795496283
commit 55eae851b6
3 changed files with 57 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import QtQuick 2.0
Rectangle {
id: page
width: 320; height: 480
color: "lightgray"
Text {
id: helloText
text: "Hello world!"
y: 30
anchors.horizontalCenter: page.horizontalCenter
font.pointSize: 24; font.bold: true
}
}