mirror of
https://github.com/status-im/nimqml.git
synced 2025-02-24 12:28:09 +00:00
22 lines
385 B
QML
22 lines
385 B
QML
import QtQuick 2.8
|
|
import QtQuick.Controls 2.3
|
|
|
|
ApplicationWindow {
|
|
width: 400
|
|
height: 300
|
|
title: "AbstractItemModel"
|
|
|
|
Component.onCompleted: visible = true
|
|
|
|
Component {
|
|
id: myListModelDelegate
|
|
Label { text: "Name:" + name }
|
|
}
|
|
|
|
ListView {
|
|
anchors.fill: parent
|
|
model: myListModel
|
|
delegate: myListModelDelegate
|
|
}
|
|
}
|