This commit is contained in:
2024-11-04 13:56:09 +01:00
parent 1fd67a6ee2
commit fb5b23efbb
5 changed files with 108 additions and 21 deletions

81
gui/TopBar.qml Normal file
View File

@@ -0,0 +1,81 @@
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
// Item
// {
// id: topBar
// anchors
// {
// top: parent.top
// left: parent.left
// right: parent.right
// }
// height: 30
RowLayout
{
id: topBar
height: 35
width: parent / 4
anchors
{
top: parent.top
left: parent.left
right: parent.right
}
Button
{
// width: parent.width/7
Layout.preferredWidth: parent.width/5
Text
{
text: "Dashboard"
id: dashBoard
}
}
Button
{
Layout.preferredWidth: parent.width/5
Text
{
text: "Kunden"
}
}
Button
{
Layout.preferredWidth: parent.width/5
Text
{
text: "Objekt"
}
}
Button
{
Layout.preferredWidth: parent.width/5
Text
{
text: "Mitarbeiter"
}
}
Button
{
Layout.preferredWidth: parent.width/5
Text
{
text: "Abrechnung"
}
}
}