blob: aced2731abe63b5e83c6127effda5603d5fb45b2 (
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
|
import QtQuick 2.9
import QtQuick.Controls 2.2
Page {
title: qsTr("Help")
Column {
anchors.centerIn: parent
spacing: 10
Button {
anchors.horizontalCenter: parent.horizontalCenter
text: qsTr("Donate")
onClicked: stackView.push("Donate.qml")
}
Button {
anchors.horizontalCenter: parent.horizontalCenter
text: qsTr("Terms of Service")
onClicked: stackView.push("Donate.qml")
}
Button {
anchors.horizontalCenter: parent.horizontalCenter
text: qsTr("Contact Support")
onClicked: stackView.push("Donate.qml")
}
Button {
anchors.horizontalCenter: parent.horizontalCenter
text: qsTr("Report bug")
onClicked: stackView.push("Donate.qml")
}
}
}
|