From 07e18a1c69f288f095b4d94e5202bad0d5c1f10d Mon Sep 17 00:00:00 2001 From: civilH Date: Thu, 24 Aug 2023 23:28:07 +0700 Subject: Implement Student dashboard thead - adding title for contents --- Student/Dashboard.ui.qml | 42 ++++++++++++++++++++++++++++++------------ 1 file changed, 30 insertions(+), 12 deletions(-) (limited to 'Student/Dashboard.ui.qml') diff --git a/Student/Dashboard.ui.qml b/Student/Dashboard.ui.qml index a461492..eee64ad 100644 --- a/Student/Dashboard.ui.qml +++ b/Student/Dashboard.ui.qml @@ -1,20 +1,38 @@ import QtQuick 2.15 import QtQuick.Controls 2.15 import "Dashboard" +import QtQuick.Layouts 1.15 -ListView { - model: ListModel { - ListElement { - title: qsTr("Building Scalable APIs with GraphQL") - image: "https://eduport.webestica.com/assets/images/courses/4by3/08.jpg" +ColumnLayout{ + RowLayout { + Label{ + text: "Course Title" + } + Label{ + text: "Total Lectures" + } + Label{ + text: "Completed Lecture" + } + Label{ + text: "Action" + } +} + ListView { + 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" + } } - 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 } } - delegate: CourseListItem { - courseTitle.text: title - courseThumb.source: image - } } -- cgit v1.2.3