20 lines
346 B
QML
20 lines
346 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls.Material
|
|
|
|
Page {
|
|
id: page
|
|
|
|
ListView {
|
|
anchors.fill: parent
|
|
model: mainModel
|
|
delegate: ListItemDelegate {}
|
|
highlight: Rectangle {
|
|
color: "lightsteelblue"
|
|
radius: 5
|
|
}
|
|
focus: true
|
|
clip: true
|
|
}
|
|
}
|