Configuration menu entry

This commit is contained in:
2025-02-26 09:12:34 +01:00
parent b468c3d078
commit 0f253c518d
7 changed files with 169 additions and 6 deletions

17
Gui/CompanyConf.qml Normal file
View File

@@ -0,0 +1,17 @@
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
}
}