mirror of
https://gitlab.com/eql/EQL5.git
synced 2025-12-26 11:52:47 -08:00
8 lines
149 B
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 }
|
|
}
|