31 lines
578 B
QML
31 lines
578 B
QML
import QtQuick 2.0
|
|
|
|
Item {
|
|
Rectangle {
|
|
id: container
|
|
objectName: "container"
|
|
width: 240
|
|
height: 320
|
|
color: "white"
|
|
Text {
|
|
text: "Zero"
|
|
}
|
|
Repeater {
|
|
id: repeater
|
|
objectName: "repeater"
|
|
width: 240
|
|
height: 320
|
|
model: testData
|
|
Component {
|
|
Text {
|
|
y: index*20
|
|
text: modelData
|
|
}
|
|
}
|
|
}
|
|
Text {
|
|
text: "Last"
|
|
}
|
|
}
|
|
}
|