summaryrefslogtreecommitdiffstats
path: root/basicsuite/Clock
diff options
context:
space:
mode:
Diffstat (limited to 'basicsuite/Clock')
-rwxr-xr-xbasicsuite/Clock/icon.pngbin0 -> 17245 bytes
-rw-r--r--basicsuite/Clock/main.qml16
2 files changed, 16 insertions, 0 deletions
diff --git a/basicsuite/Clock/icon.png b/basicsuite/Clock/icon.png
new file mode 100755
index 0000000..d200bbf
--- /dev/null
+++ b/basicsuite/Clock/icon.png
Binary files differ
diff --git a/basicsuite/Clock/main.qml b/basicsuite/Clock/main.qml
new file mode 100644
index 0000000..13183d7
--- /dev/null
+++ b/basicsuite/Clock/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
+ }
+}