ListView QML Type

Provides a list view. More...

Import Statement: import quey.ui 0.1
Inherits:

ListView

Detailed Description

import QtQuick 2.4
import quey.ui 0.1

ApplicationView {
    ListView {
        anchors.fill: parent

        delegate: ListItem {
            width: parent.width
            Label {
                anchors.centerIn: parent
                text: index+1
            }
        }

        model: 30
    }
}

ListView is based on QtQuick.ListView. Please refer to the Qt documentation for more information.