ListView in QtQuick 1.1 vs QtQuick 2.0
-
In QtQuick 1.1 ListView inherits Flickable (http://qt-project.org/doc/qt-4.8/qml-listview.html) while in QtQuick 2.0 it does not (http://qt-project.org/doc/qt-5.0/qtquick/qml-qtquick2-listview.html). That means that I can't use this to implement pull-to-refresh in QtQuick 2.0: http://dickson-dev.blogspot.com/2012/12/how-to-create-pull-down-listview-in-qml.html
Any suggestions how to implement properly pull-to-refresh in QtQuick 2.0. In my situation contentY is not zero and guaranteed to change.
Other problem with ListView: it seems list items in ListView should not change size or you will end up having problems. It is not documented anywhere. I have experienced this problem in 1.1. and 2.0 but I don't have enough data to identify it properly. Am I doing something wrong?