summaryrefslogtreecommitdiffstats
path: root/basicsuite/Calendar/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'basicsuite/Calendar/main.qml')
-rw-r--r--basicsuite/Calendar/main.qml16
1 files changed, 16 insertions, 0 deletions
diff --git a/basicsuite/Calendar/main.qml b/basicsuite/Calendar/main.qml
new file mode 100644
index 0000000..13183d7
--- /dev/null
+++ b/basicsuite/Calendar/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
+ }
+}