18 lines
278 B
QML
18 lines
278 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
|
|
Item
|
|
{
|
|
property string name: "company"
|
|
anchors.fill: parent
|
|
|
|
Label
|
|
{
|
|
text: qsTr("Das Unternehmen")
|
|
anchors.centerIn: parent
|
|
font.pixelSize: 57
|
|
font.bold: true
|
|
}
|
|
}
|