diff options
| author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-04-02 13:30:36 +0800 |
|---|---|---|
| committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-04-02 13:30:36 +0800 |
| commit | 680f327d67558f97505cd0c0f9c95765f143d763 (patch) | |
| tree | 6ead5a5b831d83223f55611b688382591f64d9a7 /OrderSummary.ui.qml | |
| parent | c43051ce55cceeb6d51858e6f5edd6041573c503 (diff) | |
Separate order summary
Diffstat (limited to 'OrderSummary.ui.qml')
| -rw-r--r-- | OrderSummary.ui.qml | 89 |
1 files changed, 0 insertions, 89 deletions
diff --git a/OrderSummary.ui.qml b/OrderSummary.ui.qml deleted file mode 100644 index a877916..0000000 --- a/OrderSummary.ui.qml +++ /dev/null @@ -1,89 +0,0 @@ -import QtQuick 2.15 -import QtQuick.Controls 2.15 -import QtQuick.Layouts 1.15 - -Rectangle { - color: "#ffffff" - radius: 16 - - ColumnLayout { - anchors.fill: parent - anchors.margins: 24 - Label { - id: oderSummaryTitle - text: qsTr("Order Summary") - font.family: "Roboto" - font.weight: Font.Medium - font.pointSize: 16 - Layout.fillWidth: true - Layout.alignment: Qt.AlignTop - } - - RowLayout { - Layout.fillWidth: true - Layout.alignment: Qt.AlignTop - Label { - id: transactionLabel - color: "#6c757d" - text: qsTr("Transaction code") - font.family: "Roboto" - font.weight: Font.Medium - font.pointSize: 16 - Layout.fillWidth: true - } - Label { - id: transactionCode - text: qsTr("B0D123X") - horizontalAlignment: Text.AlignRight - font.family: "Roboto" - font.weight: Font.Medium - font.pointSize: 16 - Layout.fillWidth: true - } - } - - Rectangle { - color: "transparent" - radius: 8 - border.width: 1 - border.color: "#4d000000" - Layout.fillWidth: true - implicitHeight: 40 - RowLayout { - anchors.fill: parent - TextField { - id: couponCode - Layout.fillWidth: true - Layout.fillHeight: true - placeholderText: qsTr("Coupon code") - font.pixelSize: 16 - font.family: "roboto" - placeholderTextColor: "#99000000" - background: Rectangle { - color: "transparent" - } - } - Button { - id: couponButton - contentItem: Text { - color: "#ffffff" - text: "Apply" - horizontalAlignment: Text.AlignHCenter - verticalAlignment: Text.AlignVCenter - font.weight: Font.Medium - font.family: "Roboto" - font.pointSize: 14 - rightPadding: 12 - leftPadding: 12 - } - Layout.fillHeight: true - background: Rectangle { - color: "#066ac9" - border.width: 0 - radius: 8 - } - } - } - } - } -}
\ No newline at end of file |