diff options
| author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-23 09:55:33 +0800 |
|---|---|---|
| committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-23 09:55:33 +0800 |
| commit | f7da35cea56f20da35f71f72c1f7319f8f4b40f0 (patch) | |
| tree | 46ac6904ee66e51a37cebabd71d87db5a6692306 /AccountForm.ui.qml | |
| parent | 5983144c59747a9779ce65003f93c28499ef0867 (diff) | |
Fix previous commit
Diffstat (limited to 'AccountForm.ui.qml')
| -rw-r--r-- | AccountForm.ui.qml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/AccountForm.ui.qml b/AccountForm.ui.qml new file mode 100644 index 0000000..37f1847 --- /dev/null +++ b/AccountForm.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 + } +} |