From 5983144c59747a9779ce65003f93c28499ef0867 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 09:54:02 +0800 Subject: Rename Transaction to Account --- Account.ui.qml | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 Account.ui.qml (limited to 'Account.ui.qml') diff --git a/Account.ui.qml b/Account.ui.qml new file mode 100644 index 0000000..37f1847 --- /dev/null +++ b/Account.ui.qml @@ -0,0 +1,41 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 + +Rectangle { + color: "#121212" + border.color: "#00000000" + + TextInput { + id: addCustomer + height: 56 + color: "#deffffff" + text: "Add Customer" + anchors.left: parent.left + anchors.right: parent.right + anchors.top: parent.top + font.pixelSize: 20 + verticalAlignment: Text.AlignVCenter + font.family: "Roboto Mono" + selectionColor: "#ffffff" + anchors.rightMargin: 16 + anchors.leftMargin: 16 + anchors.topMargin: 16 + } + + TextInput { + id: addProduct + height: 56 + color: "#deffffff" + text: "Add Product" + anchors.left: parent.left + anchors.right: parent.right + anchors.top: addCustomer.bottom + font.pixelSize: 20 + verticalAlignment: Text.AlignVCenter + selectionColor: "#ffffff" + anchors.rightMargin: 16 + anchors.leftMargin: 16 + font.family: "Roboto Mono" + anchors.topMargin: 16 + } +} -- cgit v1.2.3