diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-02-15 11:14:59 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-02-15 11:14:59 +0800 |
commit | 977573af88e6ea80b09784fe13b097705df8000d (patch) | |
tree | 6010f5769ada20929c795b08025df9fbb9292d4c | |
parent | 630b1f509f8f8f56fe7c6ed40db76abffbcf1063 (diff) |
Delete unused files
-rw-r--r-- | CardDetail.ui.qml | 126 | ||||
-rw-r--r-- | GridMinimal.ui.qml | 16 |
2 files changed, 0 insertions, 142 deletions
diff --git a/CardDetail.ui.qml b/CardDetail.ui.qml deleted file mode 100644 index e7f4ffe..0000000 --- a/CardDetail.ui.qml +++ /dev/null @@ -1,126 +0,0 @@ -import QtQuick 2.15 -import QtQuick.Controls 2.15 -import QtGraphicalEffects 1.15 - -Item { - property string imageSource: "https://eduport.webestica.com/assets/images/courses/4by3/01.jpg" - property alias buy: buy - - DropShadow { - source: rectangle - color: Qt.rgba(.113, .227, .325, .15) - anchors.fill: rectangle - } - - Rectangle { - id: rectangle - radius: 10 - anchors { - top: parent.top - topMargin: 25.6 - left: parent.left - leftMargin: 12.8 - right: parent.right - rightMargin: 12.8 - bottom: parent.bottom - } - - Image { - id: image - source: imageSource - sourceSize { - width: parent.width - 16 - height: parent.width * 3 / 4 - } - width: sourceSize.width - height: sourceSize.height - anchors { - top: parent.top - topMargin: 8 - horizontalCenter: parent.horizontalCenter - } - layer.enabled: true - layer.effect: OpacityMask { - maskSource: Rectangle { - width: image.width - height: image.height - radius: 10 - } - } - } - - Item { - id: body - width: parent.width - 16 - anchors { - top: image.bottom - horizontalCenter: parent.horizontalCenter - bottom: parent.bottom - bottomMargin: 8 - } - - Item { - id: info - width: parent.width - 32 - anchors { - top: parent.top - topMargin: 16 - horizontalCenter: parent.horizontalCenter - bottom: buttons.top - bottomMargin: 16 - } - } - - Item { - id: buttons - width: parent.width - 32 - height: 40.5 - anchors { - horizontalCenter: parent.horizontalCenter - bottom: parent.bottom - bottomMargin: 16 - } - - Button { - id: trial - text: qsTr("Free trial") - contentItem: Text { - text: trial.text - font.pixelSize: 15 - color: trial.down ? "#ffffff" - : "#066ac9" - } - background: Rectangle { - color: trial.down ? "#066ac9" - : "#ffffff" - border.color: "#066ac9" - radius: 8 - } - height: parent.height - anchors.left: parent.left - } - - Button { - id: buy - text: qsTr("Buy course") - contentItem: Text { - text: buy.text - font.pixelSize: 15 - color: "#ffffff" - } - background: Rectangle { - color: buy.down ? "#0aa073" - : "#0cbc87" - border.color: buy.down - ? "#0a966c" : "#0cbc87" - radius: 8 - } - height: parent.height - anchors.right: parent.right - } - } - } - } - - height: width * 1.2 -} diff --git a/GridMinimal.ui.qml b/GridMinimal.ui.qml deleted file mode 100644 index 860e37c..0000000 --- a/GridMinimal.ui.qml +++ /dev/null @@ -1,16 +0,0 @@ -import QtQuick 2.15 -import QtQuick.Controls 2.15 - -StackView { - property alias grid: grid - - id: stack - initialItem: GridView { - id: grid - cellWidth: width < 576 ? stack.width : width < 768 - ? stack.width / 2 : width < 992 ? stack.width / 3 - : stack.width / 4 - cellHeight: cellWidth * 1.3 - ScrollBar.vertical: ScrollBar {} - } -} |