Alisa/native/Data.qml

23 lines
389 B
QML
Raw Normal View History

2024-07-09 18:37:01 +02:00
import QtQuick
2024-07-10 12:40:38 +02:00
import Qt.labs.qmlmodels
2024-07-09 18:37:01 +02:00
2024-07-10 12:40:38 +02:00
TableModel {
TableModelColumn { display: "name" }
TableModelColumn { display: "color" }
rows: [
{
"name": "cat",
"color": "black"
},
{
"name": "dog",
"color": "brown"
},
{
"name": "bird",
"color": "white"
}
]
2024-07-09 18:37:01 +02:00
}