From 3d130f28ee0aa785d40be22f23950bf52cc4ac7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=EA=A6=AB=EA=A6=B6=EA=A6=8F=EA=A7=80=EA=A6=A6?= =?UTF-8?q?=EA=A6=BF=EA=A6=A7=EA=A6=AE=EA=A6=91=EA=A6=A9=EA=A6=AD=EA=A7=80?= Date: Mon, 21 Aug 2023 23:35:19 +0800 Subject: Student dashboard initial draft --- Student/Dashboard.ui.qml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Student/Dashboard.ui.qml (limited to 'Student') diff --git a/Student/Dashboard.ui.qml b/Student/Dashboard.ui.qml new file mode 100644 index 0000000..a461492 --- /dev/null +++ b/Student/Dashboard.ui.qml @@ -0,0 +1,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 + } +} -- cgit v1.2.3