From 5f02b860455ee90d753c83065f9bbfa01ef964d4 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: Fri, 7 Apr 2023 07:07:42 +0800 Subject: Preparation for where some will be inserted Course detail classic info, recently viewed, & tags --- Course/Detail/Classic.ui.qml | 89 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) (limited to 'Course/Detail') 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 + } + } + } } +*/ } } } -- cgit v1.2.3