feat: add StatusBar component

This commit is contained in:
uncor3
2026-05-22 11:57:53 +00:00
parent 5b33fe96f3
commit debd9f8dc6
2 changed files with 17 additions and 1 deletions
+4 -1
View File
@@ -50,6 +50,9 @@ ApplicationWindow {
Layout.fillWidth : true
Layout.fillHeight : true
}
}
StatusBar {
}
}
}
+13
View File
@@ -0,0 +1,13 @@
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import "." as App
Item {
Layout.fillWidth: true
Layout.preferredHeight: 28
Label {
text : qsTr("iDescriptor: %1 device(s) connected").arg(App.DeviceContext.devices.count)
color: "red"
}
}