diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-01-16 15:56:43 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-01-16 15:56:43 +0800 |
commit | 05405e9d88b39f72bc6833817fa63b54a6751541 (patch) | |
tree | e099d1a8ab04b1ba77381d887808c78f69f281c5 | |
parent | 92c45d9b860a008c7c157570e2c7c427b2388179 (diff) |
Aliases to the text fields
-rw-r--r-- | CheckoutFlickable.ui.qml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/CheckoutFlickable.ui.qml b/CheckoutFlickable.ui.qml index a3800b5..340904b 100644 --- a/CheckoutFlickable.ui.qml +++ b/CheckoutFlickable.ui.qml @@ -4,6 +4,13 @@ import QtQuick.Layouts 1.15 Flickable { property alias checkoutLogin: login + property alias checkoutName: name + property alias checkoutEmail: email + property alias checkoutMobile: mobile + property alias checkoutCountry: country + property alias checkoutState: state + property alias checkoutPostal: postal + property alias checkoutAddress: address contentHeight: personal.height Item { @@ -36,6 +43,7 @@ Flickable { Layout.fillWidth: true } TextField { + id: name placeholderText: qsTr("Name") Layout.fillWidth: true } @@ -51,6 +59,7 @@ Flickable { Layout.fillWidth: true } TextField { + id: email placeholderText: qsTr("Email") Layout.fillWidth: true } @@ -66,6 +75,7 @@ Flickable { Layout.fillWidth: true } TextField { + id: mobile placeholderText: qsTr("Mobile number") Layout.fillWidth: true } @@ -81,6 +91,7 @@ Flickable { Layout.fillWidth: true } TextField { + id: country placeholderText: qsTr("Select country") Layout.fillWidth: true } @@ -96,6 +107,7 @@ Flickable { Layout.fillWidth: true } TextField { + id: state placeholderText: qsTr("Select state") Layout.fillWidth: true } @@ -111,6 +123,7 @@ Flickable { Layout.fillWidth: true } TextField { + id: postal placeholderText: qsTr("PIN code") Layout.fillWidth: true } @@ -126,6 +139,7 @@ Flickable { Layout.fillWidth: true } TextField { + id: address placeholderText: qsTr("Address") Layout.fillWidth: true } |