14 lines
330 B
QML
14 lines
330 B
QML
import QtQuick 2.5
|
|
import QtQuick.Controls 2.2
|
|
import QtQuick.Controls.Material 2.2
|
|
import QtQuick.Layouts 1.1
|
|
import Nymea 1.0
|
|
import "../../components"
|
|
|
|
Label {
|
|
property var value
|
|
property var unit: Types.UnitNone
|
|
text: Math.round(Types.toUiValue(value, unit) * 100) / 100
|
|
horizontalAlignment: Text.AlignRight
|
|
}
|