2026-03-05 10:53:52 +01:00
|
|
|
import QtQuick
|
|
|
|
|
import QtQuick.Layouts
|
|
|
|
|
import QtQuick.Controls.Material
|
|
|
|
|
|
|
|
|
|
Page {
|
|
|
|
|
id: page
|
|
|
|
|
|
|
|
|
|
ListView {
|
|
|
|
|
anchors.fill: parent
|
|
|
|
|
model: mainModel
|
2026-03-05 10:54:36 +01:00
|
|
|
delegate: ListItemDelegate {}
|
2026-03-05 10:53:52 +01:00
|
|
|
highlight: Rectangle {
|
|
|
|
|
color: "lightsteelblue"
|
|
|
|
|
radius: 5
|
|
|
|
|
}
|
|
|
|
|
focus: true
|
2026-03-05 10:54:36 +01:00
|
|
|
clip: true
|
2026-03-05 10:53:52 +01:00
|
|
|
}
|
|
|
|
|
}
|