QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
FactLabel.qml
Go to the documentation of this file.
1import QtQuick
2import QtQuick.Controls
3
4import QGroundControl
5import QGroundControl.Controls
6
7QGCLabel {
8 property bool showUnits: true
9 property Fact fact: Fact { }
10
11 text: fact.valueString + (showUnits ? " " + fact.units : "")
12}