From 2f88d0cc0ce00a071d85f5862f0849d1ec70ffce Mon Sep 17 00:00:00 2001 From: Anatasof Wirapraja Date: Wed, 23 Jun 2021 10:43:05 +0700 Subject: menggunakan warna default untuk sekarang --- AccountForm.ui.qml | 85 ++++++++++++++++++++++++++++-------------------------- 1 file 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 -- cgit v1.2.3