diff options
Diffstat (limited to 'qt-mobile/qml/components/Label.qml')
-rw-r--r-- | qt-mobile/qml/components/Label.qml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/qt-mobile/qml/components/Label.qml b/qt-mobile/qml/components/Label.qml new file mode 100644 index 000000000..617e05245 --- /dev/null +++ b/qt-mobile/qml/components/Label.qml @@ -0,0 +1,11 @@ +import QtQuick 2.5 +//import QtQuick.Controls 1.2 as QuickControls +import QtQuick.Window 2.2 +import QtQuick.Dialogs 1.2 +import QtQuick.Layouts 1.1 + +Text { + + font.pointSize: 18 + color: theme.textColor +} |