Added sources and the Go 1.6 patch. Btw, I have an issue with the SilicaGridView - the model changes underneath and the changes propagate to the QML, but sometimes the QML elements inside the delegate don't change their visibility until you scroll out of the view and then return. The GridView forceLayout method doesn't seem to help much and seems like a rendering bug. Any ideas?
ListModel { id: model } Connections { target: bridge onImageStatusChanged: model.setProperty(index, "status", status) // 'index' and 'status' (e.g 'Downloading' or 'Downloaded') are signal parameters }
.... model: bridge.fileList delegate: Item { someProperty: modelData.downloading otherProperty: modelData.downloaded }