blob: 326303b97dd843e24ef12db04bd12db8a52a669e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
import QtQuick 2.15
import QtQuick.Controls 2.15
import "Dashboard"
import QtQuick.Layouts 1.15
Flickable {
contentWidth: table.width
ColumnLayout{
id: table
width: 839.878
RowLayout {
Layout.fillWidth: true
Label{
text: "Course Title"
}
Label{
text: "Total Lectures"
}
Label{
text: "Completed Lecture"
}
Label{
text: "Action"
}
}
ListView {
id: tableBody
Layout.fillWidth: true
height: 100 * count
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 {
width: tableBody.width
courseTitle.text: title
courseThumb.source: image
}
}
}
}
|