Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
29 lines
465 B
QML
29 lines
465 B
QML
import QtQuick 1.0
|
|
|
|
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"
|
|
}
|
|
}
|