diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-23 10:51:25 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-23 10:51:25 +0800 |
commit | 83a007e5495b762d94d90b87333b3828c021a9f5 (patch) | |
tree | a75c321c85dd5000e129ed18e5e6949fea16ae26 | |
parent | 0581dc058aa38bfa51b742bca3858f6e7361a906 (diff) |
Change TextInput to TextField
-rw-r--r-- | AccountForm.ui.qml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/AccountForm.ui.qml b/AccountForm.ui.qml index 7b698ef..5e9ba01 100644 --- a/AccountForm.ui.qml +++ b/AccountForm.ui.qml @@ -3,16 +3,16 @@ import QtQuick.Controls 2.15 import QtQuick.Controls.Material 2.15 Rectangle { - property alias skuTextInput: addProduct + property alias skuTextField: addProduct property alias submitButton: submit color: "#121212" border.color: "#00000000" - TextInput { + TextField { id: addCustomer height: 56 color: "#deffffff" - text: "Add Customer" + placeholderText: "Add Customer" anchors.left: parent.left anchors.right: parent.right anchors.top: parent.top @@ -25,11 +25,11 @@ Rectangle { anchors.topMargin: 16 } - TextInput { + TextField { id: addProduct height: 56 color: "#deffffff" - text: "Add Product" + placeholderText: "Add Product" anchors.left: parent.left anchors.right: parent.right anchors.top: addCustomer.bottom |