HomeForm.qml 459 B

12345678910111213141516171819202122232425262728
  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. model: lightsModel
  13. spacing: 5
  14. delegate: LightGroup {
  15. width: parent.width
  16. height: childrenRect.height
  17. title: groupName || ""
  18. }
  19. }
  20. }