1234567891011121314151617 |
- // import QtQuick 1.0 // to target S60 5th Edition or Maemo 5
- import QtQuick 1.1
- Grid {
- anchors.left: parent.left
- anchors.top: parent.top
- anchors.topMargin: 26
- columns: 3; spacing: 10
- Repeater {
- id: repeater2
- model: suspects
- delegate: Suspect {}
- }
- }
|