subsurface/qt-mobile/Label.qml
Sebastian Kügler ffe44f9aaf new Label item
Add a Label that we can use for styled text until we figured out how to
set the default font size.

Signed-off-by: Sebastian Kügler <sebas@kde.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2015-11-06 14:05:52 -08:00

14 lines
224 B
QML

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
text: "empty label"
}