app/resources/qml/Components/DataListView.qml
Dorian Zedler 0f62b52f6e - finished up some minor details
- fixed bigs
- improved pull to refresh functionality
2019-05-11 15:16:23 +02:00

73 lines
1.3 KiB
QML

import QtQuick 2.9
import QtQuick.Controls 2.4
ListView {
id: control
property int status: -1
property bool loading: false
signal refresh()
anchors.margins: 10
anchors.rightMargin: 14
clip: true
//enabled: status === 200 || status === 902
//opacity: enabled ? 1:0
ScrollBar.vertical: ScrollBar {
parent: control.parent
anchors {
top: control.top
left: control.right
margins: 10
leftMargin: 3
bottom: control.bottom
}
width: 8
visible: control.model > 0
active: true
}
Behavior on opacity {
NumberAnimation {
duration: 200
}
}
InfoArea {
id: infoArea
anchors {
left: control.left
right: control.right
top: control.top
margins: app.landscape() ? control.width * 0.4:control.width * 0.3
topMargin: control.height*( status === 901 ? 0.6:0.5) - height * 0.8
}
excludedCodes: [200, 902, 905]
errorCode: control.status
}
PullRefresher {
target: control
postRefreshDelay: 0
busyIndicator: FancyBusyIndicator {}
onRefreshRequested: {
control.refresh()
}
}
}