diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-04-12 18:30:01 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-04-12 18:30:01 +0800 |
commit | 2127dd61cda7dcb65b4edd51556158a8e79b0795 (patch) | |
tree | 0ccdd70c8b925b4a298bfcb1402917c986054a1b /Shop/Checkout/PersonalInfo.ui.qml | |
parent | 89fcfe5ec1073fd374a8bae3d8457bebd96453c8 (diff) |
Just use (BS) Label now instead of Body
Diffstat (limited to 'Shop/Checkout/PersonalInfo.ui.qml')
-rw-r--r-- | Shop/Checkout/PersonalInfo.ui.qml | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/Shop/Checkout/PersonalInfo.ui.qml b/Shop/Checkout/PersonalInfo.ui.qml index 3bdff82..fe716e8 100644 --- a/Shop/Checkout/PersonalInfo.ui.qml +++ b/Shop/Checkout/PersonalInfo.ui.qml @@ -33,8 +33,9 @@ ColumnLayout { ColumnLayout { - Body { + Label { text: qsTr("Your name *") + wrapMode: Label.Wrap Layout.fillWidth: true } @@ -58,8 +59,9 @@ ColumnLayout { ColumnLayout { - Body { + Label { text: qsTr("Email address *") + wrapMode: Label.Wrap Layout.fillWidth: true } @@ -83,8 +85,9 @@ ColumnLayout { ColumnLayout { - Body { + Label { text: qsTr("Mobile number *") + wrapMode: Label.Wrap Layout.fillWidth: true } @@ -109,8 +112,9 @@ ColumnLayout { ColumnLayout { - Body { + Label { text: qsTr("Select country *") + wrapMode: Label.Wrap Layout.fillWidth: true } Rectangle { @@ -134,8 +138,9 @@ ColumnLayout { ColumnLayout { - Body { + Label { text: qsTr("Select state *") + wrapMode: Label.Wrap Layout.fillWidth: true } @@ -160,8 +165,9 @@ ColumnLayout { ColumnLayout { - Body { + Label { text: qsTr("Postal code *") + wrapMode: Label.Wrap Layout.fillWidth: true } @@ -186,8 +192,9 @@ ColumnLayout { ColumnLayout { - Body { + Label { text: qsTr("Address *") + wrapMode: Label.Wrap Layout.fillWidth: true } @@ -235,9 +242,10 @@ ColumnLayout { left: parent.left right: parent.right } - Body { + Label { text: qsTr("Credit or Debit Card") + wrapMode: Label.Wrap Layout.fillWidth: true padding: 16 } |