summaryrefslogtreecommitdiff
path: root/Course
diff options
context:
space:
mode:
Diffstat (limited to 'Course')
-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
+ }
+ }
+ }
}
+*/
}
}
}