HomeForm.qml 515 B

123456789101112131415161718192021222324252627282930
  1. import QtQuick 2.0
  2. import QtQuick.Controls 2.0
  3. Page {
  4. title: qsTr("nooLight")
  5. LightsModel {
  6. id: lightsModel
  7. serviceUrl: settings.serviceUrl
  8. onError: console.log(text)
  9. }
  10. ListView {
  11. anchors.fill: parent
  12. anchors.margins: 5
  13. model: lightsModel
  14. spacing: 5
  15. delegate: LightGroup {
  16. width: parent.width
  17. height: childrenRect.height
  18. title: groupName || ""
  19. lights: channels
  20. }
  21. }
  22. }