22 lines
486 B
QML
22 lines
486 B
QML
import QtQuick 2.0
|
|
|
|
Item {
|
|
ListView {
|
|
anchors.fill: parent
|
|
clip: true
|
|
model: modelManager.getAppModel()
|
|
delegate: Rectangle {
|
|
width: ListView.view.width;
|
|
height: 40;
|
|
color: "lightblue"
|
|
Text {
|
|
anchors.fill: parent;
|
|
horizontalAlignment: Qt.AlignHCenter;
|
|
verticalAlignment: Qt.AlignVCenter;
|
|
text: model.name
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|