diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-04-07 07:07:42 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-04-07 07:07:42 +0800 |
commit | 5f02b860455ee90d753c83065f9bbfa01ef964d4 (patch) | |
tree | aaa748c751a665f02425fc946889b9faf8ad07c8 /Course/Detail | |
parent | 11ab113885d6350ef51f6ad7da1da884177490be (diff) |
Preparation for where some will be inserted
Course detail classic info, recently viewed, & tags
Diffstat (limited to 'Course/Detail')
-rw-r--r-- | Course/Detail/Classic.ui.qml | 89 |
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 + } + } + } } +*/ } } } |