summaryrefslogtreecommitdiff
path: root/TransactionForm.ui.qml
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2021-06-23 09:54:02 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2021-06-23 09:54:02 +0800
commit5983144c59747a9779ce65003f93c28499ef0867 (patch)
tree97edc238f033ac94879fd80e8696575aaa8ec4bf /TransactionForm.ui.qml
parent1de0e3d2338ddf4350adffcae02c5818047eb442 (diff)
Rename Transaction to Account
Diffstat (limited to 'TransactionForm.ui.qml')
-rw-r--r--TransactionForm.ui.qml41
1 files changed, 0 insertions, 41 deletions
diff --git a/TransactionForm.ui.qml b/TransactionForm.ui.qml
deleted file mode 100644
index 37f1847..0000000
--- a/TransactionForm.ui.qml
+++ /dev/null
@@ -1,41 +0,0 @@
-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
- }
-}