diff options
Diffstat (limited to 'AccountForm.ui.qml')
-rw-r--r-- | AccountForm.ui.qml | 85 |
1 files changed, 44 insertions, 41 deletions
diff --git a/AccountForm.ui.qml b/AccountForm.ui.qml index 49e28fb..c5495c3 100644 --- a/AccountForm.ui.qml +++ b/AccountForm.ui.qml @@ -3,58 +3,61 @@ import QtQuick.Controls 2.15 import QtQuick.Controls.Material 2.15 Rectangle { - property alias skuTextField: addProduct - property alias submitButton: submit - color: "#121212" - border.color: "#00000000" + property alias skuTextField: addProduct + property alias submitButton: submit + color: "#121212" + border.color: "#00000000" - TextField { - id: addCustomer - height: 56 - color: "#deffffff" - placeholderText: "Add Customer" - placeholderTextColor: "#99ffffff" - 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 - } - - TextField { - id: addProduct - height: 56 - color: "#deffffff" - placeholderText: "Add Product" - placeholderTextColor: "#99ffffff" - 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 - } + TextField { + id: addCustomer + height: 56 + color: "#deffffff" + placeholderText: "Add Customer" + placeholderTextColor: "#99ffffff" + 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 + } + TextField { + id: addProduct + height: 56 + color: "#deffffff" + placeholderText: "Add Product" + placeholderTextColor: "#99ffffff" + 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 + } Button { + id: submit text: qsTr("Tagih") - Material.background: Material.Amber anchors.left: parent.left anchors.right: parent.right anchors.bottom: parent.bottom font.letterSpacing: 1.24 + spacing: 8 + autoRepeat: false + highlighted: false + flat: false font.capitalization: Font.MixedCase font.family: "Roboto Mono" anchors.rightMargin: 16 anchors.leftMargin: 16 anchors.bottomMargin: 16 } -} +}
\ No newline at end of file |