aboutsummaryrefslogtreecommitdiff
path: root/src/qml/pages/AboutPage.qml
diff options
context:
space:
mode:
authorOskari Timperi <oskari.timperi@iki.fi>2013-12-07 17:33:25 +0200
committerOskari Timperi <oskari.timperi@iki.fi>2013-12-07 17:33:25 +0200
commitef5baad9ff47cfe32bb4f97368e0b3148765caa6 (patch)
tree87d59ecc69e7981489e16aeed62115b4a4927223 /src/qml/pages/AboutPage.qml
parent3aeb00f43988ae607082cdabe124b9d5e123e33c (diff)
downloadunitmaster-ef5baad9ff47cfe32bb4f97368e0b3148765caa6.tar.gz
unitmaster-ef5baad9ff47cfe32bb4f97368e0b3148765caa6.zip
shuffle stuff around and add directory for tests
Diffstat (limited to 'src/qml/pages/AboutPage.qml')
-rw-r--r--src/qml/pages/AboutPage.qml31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/qml/pages/AboutPage.qml b/src/qml/pages/AboutPage.qml
new file mode 100644
index 0000000..0810846
--- /dev/null
+++ b/src/qml/pages/AboutPage.qml
@@ -0,0 +1,31 @@
+import QtQuick 2.0
+import Sailfish.Silica 1.0
+import "helpers.js" as H
+
+Page {
+ id: page
+
+ SilicaFlickable {
+ anchors.fill: parent
+
+ Column {
+ width: parent.width
+ spacing: Theme.paddingLarge
+
+ PageHeader {
+ title: "About"
+ }
+
+ TextArea {
+ readOnly: true
+ width: parent.width
+ horizontalAlignment: TextEdit.AlignHCenter
+ text: "Unit Master\nCopyright 2013 Oskari Timperi\n\nThe
+application icon is derived from the Meanicons Icon Set\n(http://www.meanicons.com/)."
+ }
+ }
+
+ }
+}
+
+