SimpleListView.qml 392 B

123456789101112131415161718192021222324
  1. import QtQuick 2.5
  2. import PictureModel 1.0
  3. // Forgive me
  4. import "../.."
  5. ListView {
  6. anchors.fill: parent
  7. delegate: ArtImage {
  8. source: path
  9. height: size.height
  10. width: size.width
  11. }
  12. model: globalUtil.imageModel
  13. PictureModel {
  14. id: imageModel
  15. Component.onCompleted: {
  16. globalUtil.imageModel = imageModel
  17. }
  18. }
  19. }