QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
SettingsPage.qml
Go to the documentation of this file.
1import QtQuick
2import QtQuick.Controls
3import QtQuick.Dialogs
4import QtQuick.Layouts
5
6import QGroundControl
7import QGroundControl.FactControls
8import QGroundControl.Controls
9
10Item {
11 id: root
12
13 default property alias contentItem: mainLayout.data
14
15 QGCFlickable {
16 anchors.fill: parent
17 contentWidth: mainLayout.width
18 contentHeight: mainLayout.height
19
20 ColumnLayout {
21 id: mainLayout
22 x: Math.max(0, root.width / 2 - width / 2)
23 width: Math.max(implicitWidth, ScreenTools.defaultFontPixelWidth * 50)
24 spacing: ScreenTools.defaultFontPixelHeight
25 }
26 }
27}