blob: d1c3fddbf20d7550783bc74c75d7e78082e101c0 [file] [log] [blame]
import QtQuick 2.0
Flickable {
width: 200; height: 200
contentWidth: row.width; contentHeight: row.height
Row {
id: row
objectName: "row"
Repeater {
model: 4
Rectangle { width: 400; height: 600; color: "yellow"; border.width: 1 }
}
}
}