diff options
Diffstat (limited to '')
-rw-r--r-- | src/SettingsPage.qml | 60 |
1 files changed, 39 insertions, 21 deletions
diff --git a/src/SettingsPage.qml b/src/SettingsPage.qml index 763f9b1..d556a11 100644 --- a/src/SettingsPage.qml +++ b/src/SettingsPage.qml @@ -1,3 +1,19 @@ +/* + * Copyright (C) 2023 - Arseniy Movshev <dodoradio@outlook.com> + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ import QtQuick 2.0 import org.asteroid.controls 1.0 import QtPositioning 5.15 @@ -31,28 +47,30 @@ Item { Component.onCompleted: checked = prioritiseGPS.value onCheckedChanged: prioritiseGPS.value = checked } - Row { + Item { width: parent.width ; height: root.width*0.2 } + Column { width: parent.width - height: root.width*0.2 - // Icon { - // name: "ios-information-circle-outline" - // height: parent.height - // width: height - // } - Column { - height: parent.height - width: parent.width - parent.height - Label { - text: "Map Data © OpenStreetMap contributors" - width: parent.width - font.pixelSize: root.width*0.05 - wrapMode: Text.Wrap - } - Label { - text: "under the ODbL" - width: parent.width - font.pixelSize: root.width*0.05 - } + Label { + text: "Map Data © OpenStreetMap contributors" + width: parent.width + font.pixelSize: root.width*0.05 + wrapMode: Text.Wrap + } + Label { + text: "under the ODbL" + width: parent.width + font.pixelSize: root.width*0.05 + } + Item { width: parent.width ; height: root.width*0.05 } + Label { + text: "Made by dodoradio" + width: parent.width + font.pixelSize: root.width*0.05 + } + Label { + text: "dodorad.io" + width: parent.width + font.pixelSize: root.width*0.05 } } Item { width: parent.width ; height: root.width*0.2 } |