blob: 5fe42a07b2b993b3dac3a5c3a07b65b0db5d426f (
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
32
33
34
35
36
37
38
39
|
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/)."
}
Button {
anchors.horizontalCenter: parent.horizontalCenter
text: "github.com"
onClicked: {
Qt.openUrlExternally("http://github.com/oswjk/unitmaster")
}
}
}
}
}
|