blob: 0810846331805259342a318ba7aca8bbd412456f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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/)."
}
}
}
}
|