diff options
Diffstat (limited to 'tests/auto/declarative/visual/repeater/basic4.qml')
-rw-r--r-- | tests/auto/declarative/visual/repeater/basic4.qml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/auto/declarative/visual/repeater/basic4.qml b/tests/auto/declarative/visual/repeater/basic4.qml new file mode 100644 index 0000000..f31de2c --- /dev/null +++ b/tests/auto/declarative/visual/repeater/basic4.qml @@ -0,0 +1,33 @@ +import Qt 4.6 + +Rectangle { + color: "blue" + width: 300 + height: 200 + ListModel { + id: dataSource + ListElement { + name: "January" + } + ListElement { + name: "February" + } + } + Component { + id: delegate + Rectangle { + color: "red" + width: 100 + height: 100 + Text { + text: name + } + } + } + Row { + Repeater { + model: dataSource + delegate: delegate + } + } +} |