SuspectList.qml 301 B

1234567891011121314151617
  1. // import QtQuick 1.0 // to target S60 5th Edition or Maemo 5
  2. import QtQuick 1.1
  3. Grid {
  4. anchors.left: parent.left
  5. anchors.top: parent.top
  6. anchors.topMargin: 26
  7. columns: 3; spacing: 10
  8. Repeater {
  9. id: repeater2
  10. model: suspects
  11. delegate: Suspect {}
  12. }
  13. }