mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
10 lines
175 B
QML
10 lines
175 B
QML
import QtQuick 2.0
|
|
|
|
Item {
|
|
Text {
|
|
anchors.fill: parent
|
|
color: styleData.textColor
|
|
elide: styleData.elideMode
|
|
text: styleData.value
|
|
}
|
|
}
|