diff options
author | jan Iversen <jan@casacondor.com> | 2019-11-23 20:44:23 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-12-26 10:21:11 -0800 |
commit | fac8d5b125bf473425fd2f006616a9782502cd04 (patch) | |
tree | 487efc85210aeb9ea86432bb87a29841fb34e5ca /mobile-widgets/qml/DivePlannerEdit.qml | |
parent | 800973a9206e2479683ed1b0cc554834620f3034 (diff) | |
download | subsurface-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/DivePlannerEdit.qml')
-rw-r--r-- | mobile-widgets/qml/DivePlannerEdit.qml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/mobile-widgets/qml/DivePlannerEdit.qml b/mobile-widgets/qml/DivePlannerEdit.qml new file mode 100644 index 000000000..667c2df3b --- /dev/null +++ b/mobile-widgets/qml/DivePlannerEdit.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 edit") + + ColumnLayout { + width: parent.width + spacing: 1 + Layout.margins: 10 + + Text { + text: "Dive planner edit" + } + } +} |