summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/DivePlannerView.qml
diff options
context:
space:
mode:
authorGravatar jan Iversen <jan@casacondor.com>2019-11-23 20:44:23 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-12-26 10:21:11 -0800
commitfac8d5b125bf473425fd2f006616a9782502cd04 (patch)
tree487efc85210aeb9ea86432bb87a29841fb34e5ca /mobile-widgets/qml/DivePlannerView.qml
parent800973a9206e2479683ed1b0cc554834620f3034 (diff)
downloadsubsurface-fac8d5b125bf473425fd2f006616a9782502cd04.tar.gz
mobile-widgets/qml: add diveplanner pages
Diveplanner consist of 3 pages: - Edit, creation of the plan - View, view the plan - Manager, list/delete/select stored diveplans With the current navigation system (pageStack) View needs to be split in multiple pages. Signed-off-by: Jan Iversen <jan@casacondor.com>
Diffstat (limited to 'mobile-widgets/qml/DivePlannerView.qml')
-rw-r--r--mobile-widgets/qml/DivePlannerView.qml22
1 files changed, 22 insertions, 0 deletions
diff --git a/mobile-widgets/qml/DivePlannerView.qml b/mobile-widgets/qml/DivePlannerView.qml
new file mode 100644
index 000000000..1258c8497
--- /dev/null
+++ b/mobile-widgets/qml/DivePlannerView.qml
@@ -0,0 +1,22 @@
+// SPDX-License-Identifier: GPL-2.0
+import QtQuick 2.12
+import QtQuick.Controls 2.12
+import QtQuick.Controls 1.4
+import QtQuick.Layouts 1.12
+import QtQuick.Dialogs 1.3
+import org.subsurfacedivelog.mobile 1.0
+import org.kde.kirigami 2.4 as Kirigami
+
+Kirigami.ScrollablePage {
+ title: qsTr("Dive planner view")
+
+ ColumnLayout {
+ width: parent.width
+ spacing: 1
+ Layout.margins: 10
+
+ Text {
+ text: "Dive planner view"
+ }
+ }
+}