mirror of
https://gitlab.com/eql/EQL5.git
synced 2025-12-26 03:42:03 -08:00
12 lines
184 B
QML
12 lines
184 B
QML
import QtQuick 2.0
|
|
|
|
ListView {
|
|
width: 150; height: 250
|
|
|
|
model: myModel
|
|
delegate: Rectangle {
|
|
height: 25
|
|
width: 150
|
|
Text { text: modelData }
|
|
}
|
|
}
|