mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	This allows for better scaling of the UI. Signed-off-by: jan Iversen <jan@casacondor.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			451 B
		
	
	
	
		
			QML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			451 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 view")
 | 
						|
 | 
						|
	ColumnLayout {
 | 
						|
		width: parent.width
 | 
						|
		spacing: 1
 | 
						|
		Layout.margins: Kirigami.Units.gridUnit
 | 
						|
 | 
						|
		Text {
 | 
						|
			text: "Dive planner view"
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |