summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual/ListView/basic4/basic4.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/visual/ListView/basic4/basic4.qml')
-rw-r--r--tests/auto/declarative/visual/ListView/basic4/basic4.qml31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/auto/declarative/visual/ListView/basic4/basic4.qml b/tests/auto/declarative/visual/ListView/basic4/basic4.qml
new file mode 100644
index 0000000..9e5229a
--- /dev/null
+++ b/tests/auto/declarative/visual/ListView/basic4/basic4.qml
@@ -0,0 +1,31 @@
+Rect {
+ color: "blue"
+ width: 200
+ height: 300
+ id: Page
+ ListModel {
+ id: Model
+ ListElement {
+ name: "January"
+ }
+ ListElement {
+ name: "February"
+ }
+ }
+ Component {
+ id: Delegate
+ Rect {
+ color: "red"
+ width: 100
+ height: 100
+ Text {
+ text: name
+ }
+ }
+ }
+ ListView {
+ anchors.fill: parent
+ model: Model
+ delegate: Delegate
+ }
+}