-
Bug
-
Resolution: Done
-
P2: Important
-
5.1.1, 5.3.0 Beta1
-
None
-
qtdeclarative#stable: 556846aa1fd5594156116c33ebf57b1f58fff53e
The following example illustrates:
import QtQuick 2.0 ListView { id: view width: 400; height: 400 model: 10 cacheBuffer: -1 delegate: Rectangle { color: index % 2 ? "green" : "orange" width: parent.width height: 200 Component.onCompleted: console.log("created", index) Component.onDestruction: console.log("destroyed", index) } }