summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-04-07 07:07:42 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-04-07 07:07:42 +0800
commit5f02b860455ee90d753c83065f9bbfa01ef964d4 (patch)
treeaaa748c751a665f02425fc946889b9faf8ad07c8
parent11ab113885d6350ef51f6ad7da1da884177490be (diff)
Preparation for where some will be inserted
Course detail classic info, recently viewed, & tags
-rw-r--r--Course/Detail/Classic.ui.qml89
1 files changed, 89 insertions, 0 deletions
diff --git a/Course/Detail/Classic.ui.qml b/Course/Detail/Classic.ui.qml
index 5f5e3fd..f2f2e60 100644
--- a/Course/Detail/Classic.ui.qml
+++ b/Course/Detail/Classic.ui.qml
@@ -130,7 +130,96 @@ Flickable {
}
}
}
+/*
+ Item {
+ Layout.fillWidth: true
+ implicitHeight: info.height
+
+ DrpShdw.Box {
+ source: infoRectangle
+ anchors.fill:
+ infoRectangle
+ }
+
+ Rectangle {
+ id: infoRectangle
+ color: Eduport.bsCardBg
+ radius: 8
+ anchors.fill: info
+ }
+
+ ContentSidebar.Info {
+ id: info
+ anchors {
+ left: parent
+ .left
+ right: parent
+ .right
+ }
+ }
+ }
+*/
+ }
+/*
+ ColumnLayout {
+
+ Item {
+ Layout.fillWidth: true
+ implicitHeight: recent.height
+
+ DrpShdw.Box {
+ source: recentRectangle
+ anchors.fill:
+ recentRectangle
+ }
+
+ Rectangle {
+ id: recentRectangle
+ color: Eduport.bsCardBg
+ radius: 8
+ anchors.fill: recent
+ }
+
+ ContentSidebar.Recent {
+ id: recent
+ anchors {
+ left: parent
+ .left
+ right: parent
+ .right
+ }
+ }
+ }
+
+ Item {
+ Layout.fillWidth: true
+ implicitHeight: tags.height
+
+ DrpShdw.Box {
+ source: tagsRectangle
+ anchors.fill:
+ tagsRectangle
+ }
+
+ Rectangle {
+ id: tagsRectangle
+ color: Eduport.bsCardBg
+ radius: 8
+ anchors.fill: tags
+ }
+
+ ContentSidebar.Tags {
+ id: tags
+ anchors {
+ left: parent
+ .left
+ right: parent
+ .right
+ }
+ }
+ }
}
+*/
}
}
}