11 lines
162 B
QML
11 lines
162 B
QML
pragma Singleton
|
|
import QtQuick 2.9
|
|
import QtQuick.Controls 2.2
|
|
|
|
Item {
|
|
property alias font: materialLabel.font
|
|
Label {
|
|
id: materialLabel
|
|
}
|
|
}
|