mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
23 lines
436 B
QML
23 lines
436 B
QML
|
// 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 manager")
|
||
|
|
||
|
ColumnLayout {
|
||
|
width: parent.width
|
||
|
spacing: 1
|
||
|
Layout.margins: 10
|
||
|
|
||
|
Text {
|
||
|
text: "Dive planner manager"
|
||
|
}
|
||
|
}
|
||
|
}
|