17 lines
246 B
QML
17 lines
246 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
|
|
Item
|
|
{
|
|
anchors.fill: parent
|
|
|
|
Label
|
|
{
|
|
text: qsTr("Benutzer-Verwaltung")
|
|
anchors.centerIn: parent
|
|
font.pixelSize: 57
|
|
font.bold: true
|
|
}
|
|
}
|