-
Notifications
You must be signed in to change notification settings - Fork 0
/
AboutPage.qml
49 lines (42 loc) · 1.05 KB
/
AboutPage.qml
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
40
41
42
43
44
45
46
47
48
49
import QtQuick 2.0
import QtQuick.Controls
Page {
id: aboutPage
title: qsTr("About")
height: window.height
width: window.width
Column {
id: column
anchors.fill: parent
spacing: 30
anchors.leftMargin: 20
anchors.bottomMargin: 20
anchors.topMargin: 20
Text {
id: text1
text: qsTr("About")
font.pixelSize: 18
horizontalAlignment: Text.AlignHCenter
font.bold: true
anchors.horizontalCenter: parent.horizontalCenter
}
Text {
id: text2
width: parent.width-20
text: qsTr("Version: 1.1")
font.pixelSize: 16
}
Text {
id: text3
width: parent.width-20
text: qsTr("Author: Christoph Amthor, www.c-amthor.de, © 2022")
font.pixelSize: 16
}
Text {
id: text4
width: parent.width-20
text: qsTr("License: GPLv3")
font.pixelSize: 16
}
}
}