EQL5/examples/M-modules/quick/item-model/qml/abstract-model.qml

8 lines
149 B
QML

import QtQuick 2.0
ListView {
width: 200; height: 250
model: myModel
delegate: Text { text: "animal: <b>" + kind + "</b>, " + size }
}