summaryrefslogtreecommitdiff
path: root/OrderCompletedFlickable.ui.qml
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-02-13 20:42:14 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-02-13 20:42:14 +0800
commit155c4d00ababfeeb8574e2b6d51e59ac9216fcab (patch)
tree75f995700a346969e03ec87100dca4c5a6a91564 /OrderCompletedFlickable.ui.qml
parente0824ea46338271113a67c0db22d081889f985b3 (diff)
Shorten names
Use something like import "qshopper" as Shopper
Diffstat (limited to 'OrderCompletedFlickable.ui.qml')
-rw-r--r--OrderCompletedFlickable.ui.qml62
1 files changed, 0 insertions, 62 deletions
diff --git a/OrderCompletedFlickable.ui.qml b/OrderCompletedFlickable.ui.qml
deleted file mode 100644
index ebf6bc2..0000000
--- a/OrderCompletedFlickable.ui.qml
+++ /dev/null
@@ -1,62 +0,0 @@
-import QtQuick 2.15
-import QtQuick.Controls 2.15
-import QtQuick.Layouts 1.15
-
-Flickable {
- property alias orderCompletedText: text
- property alias orderCompletedButton: button
- contentHeight: body.height
-
- FontLoader {
- id: jost
- name: "Jost"
- source: "Jost/Jost-Regular.ttf"
- }
-
- ColumnLayout {
- id: body
- anchors {
- top: parent.top
- left: parent.left
- right: parent.right
- }
-
- ColumnLayout {
- Layout.topMargin: 96
- Layout.leftMargin: 16
- Layout.rightMargin: 16
- Layout.bottomMargin: 96
-
- Label {
- text: qsTr("Your Order is Completed!")
- font.pixelSize: 30
- font.family: jost.name
- wrapMode: Text.Wrap
- horizontalAlignment: Text.AlignHCenter
- Layout.fillWidth: true
- Layout.bottomMargin: 20
- }
-
- Label {
- id: text
- text: qsTr("Your order 673290789 has been "
- + "completed. Your order details are "
- + "shown for your personal account.")
- font.pixelSize: 16
- font.family: jost.name
- wrapMode: Text.Wrap
- horizontalAlignment: Text.AlignHCenter
- Layout.fillWidth: true
- Layout.bottomMargin: 32
- }
-
- Button {
- id: button
- text: qsTr("View My Orders")
- font.pixelSize: 16
- font.family: jost.name
- Layout.alignment: Qt.AlignHCenter
- }
- }
- }
-}