mirror of https://github.com/status-im/nimqml.git
23 lines
438 B
QML
23 lines
438 B
QML
import QtQuick 2.2
|
|
import QtQuick.Controls 1.2
|
|
import QtQuick.Layouts 1.1
|
|
import QtQuick.Window 2.1
|
|
|
|
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
|
|
}
|
|
}
|