QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
FactTextFieldRow.qml
Go to the documentation of this file.
1import QtQuick
2import QtQuick.Layouts
3
4import QGroundControl
5import QGroundControl.Controls
6
7RowLayout {
8 property var fact: Fact { }
9
10 QGCLabel {
11 text: fact.name + ":"
12 }
13
14 FactTextField {
15 Layout.fillWidth: true
16 showUnits: true
17 fact: parent.fact
18 }
19}