From 83a007e5495b762d94d90b87333b3828c021a9f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=EA=A6=AB=EA=A6=B6=EA=A6=8F=EA=A7=80=EA=A6=A6?= =?UTF-8?q?=EA=A6=BF=EA=A6=A7=EA=A6=AE=EA=A6=91=EA=A6=A9=EA=A6=AD=EA=A7=80?= Date: Wed, 23 Jun 2021 10:51:25 +0800 Subject: Change TextInput to TextField --- AccountForm.ui.qml | 10 +++++----- 1 file 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 -- cgit v1.2.3