diff options
| author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-30 19:41:53 +0800 |
|---|---|---|
| committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-30 19:41:53 +0800 |
| commit | db7d0d21e4c8c2b2a914c279e4efc34d4e1d3db0 (patch) | |
| tree | 17a51e3b7633361a8d07d1399e0aa32bd67ee27d /Header.ui.qml | |
| parent | 6c0845e89afdb8fccbd99e16fb26e12a70097357 (diff) | |
Separate cart item to its own file
Diffstat (limited to 'Header.ui.qml')
| -rw-r--r-- | Header.ui.qml | 76 |
1 files changed, 2 insertions, 74 deletions
diff --git a/Header.ui.qml b/Header.ui.qml index f2c61eb..29091b6 100644 --- a/Header.ui.qml +++ b/Header.ui.qml @@ -6,6 +6,7 @@ import Eduport 1.4 import "DropShadow" as DrpShdw import "Button" as Btn import "Label" as Lbl +import "Header" ToolBar { property alias logo: logo @@ -133,80 +134,7 @@ ToolBar { width: 256 sourceComponent: background } - delegate: MenuItem { - id: cartMenuItem - contentItem: ColumnLayout { - - Loader { - Layout.fillWidth: true - Layout.topMargin: -24 - Layout.leftMargin: -8 - Layout.rightMargin: -8 - sourceComponent: menuSeparator - } - - RowLayout { - Layout.margins: 16 - - Loader { - property string - imageSource: - cartMenuItem - .icon.source - property int - imageWidth: 50 - property int - imageHeight: 50 - property real - maskRadius: 5.2 - sourceComponent: image - Layout.alignment: - Qt.AlignTop - } - - ColumnLayout { - - RowLayout { - - Lbl.H6 { - text: - cartMenuItem - .text - Layout - .fillWidth: - true - } - - Button { - Layout.alignment: Qt.AlignTop - contentItem: Image { - source: "Bootstrap/icons/x.svg" - - ColorOverlay { - color: Eduport.bsGray600 - source: parent - anchors.fill: parent - } - } - background: Rectangle { - color: "transparent" - implicitWidth: 13 - } - } - } - - ComboBox { - model: [1, 2, - 3, 4, - 5] - } - } - } - } - background: Rectangle { - color: "transparent" - } - } + delegate: CartItem {} Lbl.H5 { text: qsTr("Cart items") |