summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-08-21 23:35:19 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-08-21 23:35:19 +0800
commit3d130f28ee0aa785d40be22f23950bf52cc4ac7b (patch)
treef3977833775d0e86fcea77155b24ae8aa9798e80
parentaa8f0be8be9a4c5dea71dac62a9fdb722e5fcf6f (diff)
Student dashboard initial draft
-rw-r--r--Student/Dashboard.ui.qml20
1 files changed, 20 insertions, 0 deletions
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
+ }
+}