Добавлен PullToRefresh для ListView

This commit is contained in:
2024-05-18 09:34:42 +02:00
parent fe298f0631
commit e793c1a375

View File

@@ -1,10 +1,14 @@
import QtQuick 2.0
import QtQuick.Controls 2.0
import ru.ded.components 1.0
Page {
title: qsTr("nooLight")
ListView {
id: listView
anchors.fill: parent
anchors.margins: 5
@@ -12,7 +16,7 @@ Page {
spacing: 5
delegate: LightGroup {
width: parent.width
width: listView.width
height: childrenRect.height
title: groupName || ""
@@ -22,6 +26,16 @@ Page {
lightsModel.switchChannel(channelId)
}
}
PoolToRefresh {
anchors.top: parent.top
width: parent.width
height: 30
onUpdate: {
lightsModel.reload()
}
}
}
BusyIndicator {