blob: a4614925524886339e36ea2789257b86c9ede564 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import QtQuick 2.15
import QtQuick.Controls 2.15
import "Dashboard"
ListView {
model: ListModel {
ListElement {
title: qsTr("Building Scalable APIs with GraphQL")
image: "https://eduport.webestica.com/assets/images/courses/4by3/08.jpg"
}
ListElement {
title: qsTr("Create a Design System in Figma")
image: "https://eduport.webestica.com/assets/images/courses/4by3/03.jpg"
}
}
delegate: CourseListItem {
courseTitle.text: title
courseThumb.source: image
}
}
|