summaryrefslogtreecommitdiffstats
path: root/basicsuite/Social/main.qml
diff options
context:
space:
mode:
authoraavit <eirik.aavitsland@digia.com>2013-03-06 15:00:27 +0100
committeraavit <eirik.aavitsland@digia.com>2013-03-06 15:00:27 +0100
commit2e6e329dcda94df2976c469ef81f810132ec3f8f (patch)
treeac5ee5dfddd238e4130a6c1e173284a2d28821bd /basicsuite/Social/main.qml
Added the suite used at Embedded World 2013. See basicsuite/README.
Feel free to add & improve!
Diffstat (limited to 'basicsuite/Social/main.qml')
-rw-r--r--basicsuite/Social/main.qml16
1 files changed, 16 insertions, 0 deletions
diff --git a/basicsuite/Social/main.qml b/basicsuite/Social/main.qml
new file mode 100644
index 0000000..13183d7
--- /dev/null
+++ b/basicsuite/Social/main.qml
@@ -0,0 +1,16 @@
+import QtQuick 2.0
+
+Rectangle {
+ width: 200
+ height: 200
+ color: "black"
+
+ Text {
+ anchors.fill: parent
+ color: "white"
+ horizontalAlignment: Text.AlignHCenter
+ verticalAlignment: Text.AlignVCenter
+ text: "More to come..."
+ font.pixelSize: Math.min(width, height) * 0.03
+ }
+}