summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-01-18 11:13:17 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-01-18 11:13:17 +0800
commit66ae0180be1f658692eeb518e858b62e62b246c7 (patch)
treee90a67596fe35d0e838636f10bfa138eb33e4c12
parente843317c1c7a81b8794ae99586eaad0f9a0b9de0 (diff)
More pixel size explicit settings
-rw-r--r--CheckoutFlickable.ui.qml15
1 files changed, 15 insertions, 0 deletions
diff --git a/CheckoutFlickable.ui.qml b/CheckoutFlickable.ui.qml
index 9332656..9fe77ae 100644
--- a/CheckoutFlickable.ui.qml
+++ b/CheckoutFlickable.ui.qml
@@ -249,6 +249,9 @@ Flickable {
ComboBox {
model: ListModel {
ListElement {
+ text: "Please choose one"
+ }
+ ListElement {
text: "Bank of America"
}
ListElement {
@@ -282,6 +285,7 @@ Flickable {
Label {
text: qsTr("Order Summary")
+ font.pixelSize: 21
Layout.fillWidth: true
}
@@ -295,12 +299,14 @@ Flickable {
Label {
id: codeLabel
text: qsTr("Transaction code")
+ font.pixelSize: 15
anchors.verticalCenter: parent.verticalCenter
}
Label {
id: codeValue
text: "AB12365E"
+ font.pixelSize: 15
anchors {
right: parent.right
verticalCenter: parent.verticalCenter
@@ -312,11 +318,13 @@ Flickable {
TextField {
placeholderText: qsTr("COUPON CODE")
+ font.pixelSize: 15
Layout.fillWidth: true
}
Button {
text: qsTr("Apply")
+ font.pixelSize: 15
}
}
}
@@ -331,12 +339,14 @@ Flickable {
Label {
id: priceLabel
text: qsTr("Original Price")
+ font.pixelSize: 15
anchors.verticalCenter: parent.verticalCenter
}
Label {
id: priceValue
text: "$500"
+ font.pixelSize: 15
anchors {
right: parent.right
verticalCenter: parent.verticalCenter
@@ -352,12 +362,14 @@ Flickable {
Label {
id: discountLabel
text: qsTr("Coupon Discount")
+ font.pixelSize: 15
anchors.verticalCenter: parent.verticalCenter
}
Label {
id: discountValue
text: "-" + "$20"
+ font.pixelSize: 15
anchors {
right: parent.right
verticalCenter: parent.verticalCenter
@@ -373,12 +385,14 @@ Flickable {
Label {
id: totalLabel
text: qsTr("Total")
+ font.pixelSize: 21
anchors.verticalCenter: parent.verticalCenter
}
Label {
id: totalValue
text: "$480"
+ font.pixelSize: 21
anchors {
right: parent.right
verticalCenter: parent.verticalCenter
@@ -389,6 +403,7 @@ Flickable {
Button {
text: qsTr("Place Order")
+ font.pixelSize: 15
Layout.fillWidth: true
}
}