summaryrefslogtreecommitdiff
path: root/CourseLecture.ui.qml
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-04-02 16:46:35 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-04-02 16:46:35 +0800
commitb18f44a86757a8feedc977a762a6822cafa0cb19 (patch)
treebd1a2d1d6c8913d88c701857462e951f08a70f77 /CourseLecture.ui.qml
parentfc100ff4832d4e8e8765201176eb0d5c4fedea97 (diff)
Move to be used files to each dir
Diffstat (limited to 'CourseLecture.ui.qml')
-rw-r--r--CourseLecture.ui.qml63
1 files changed, 0 insertions, 63 deletions
diff --git a/CourseLecture.ui.qml b/CourseLecture.ui.qml
deleted file mode 100644
index 8dfbff3..0000000
--- a/CourseLecture.ui.qml
+++ /dev/null
@@ -1,63 +0,0 @@
-import QtQuick 2.15
-import QtQuick.Controls 2.15
-import QtQuick.Layouts 1.15
-
-Rectangle {
- width: coursecontent.width
- height: coursecontent.height
- color: "#fff"
- RowLayout {
- id: coursecontent
- spacing: 8
- Layout.margins: 8
- Button {
- id: play
- icon.source: "Font-Awesome/svgs/solid/circle-play.svg"
- icon.color: "#ffffff"
- Layout.margins: 8
- display: AbstractButton.IconOnly
- Layout.preferredHeight: 32
- Layout.preferredWidth: 32
- Layout.minimumHeight: 32
- Layout.minimumWidth: 32
- background: Rectangle {
- color: play.down ? "#ff2c2c": "#4dff2c2c"
- radius: 100
- }
- }
- Label {
- id: coursetitle
- Layout.margins: 8
- color: "#000000"
- text: "Course title"
- font.pointSize: 16
- font.family: "roboto"
- verticalAlignment: Text.AlignVCenter
- }
- Label {
- Layout.margins: 8
- id: premiumbadge
- color: "#ffffff"
- text: "Premium"
- font.pointSize: 12
- font.family: "roboto"
- verticalAlignment: Text.AlignVCenter
- rightPadding: 8
- leftPadding: 8
- padding: 4
- background: Rectangle {
- color: "#fd7e14"
- radius: 8
- }
- }
- Label {
- Layout.margins: 8
- id: courselength
- color: "#4d000000"
- text: "11m 12s"
- font.pointSize: 16
- font.family: "roboto"
- Layout.alignment: Qt.AlignRight | Qt.AlignVCenter
- }
- }
-}