diff options
| author | Anatasof Wirapraja <anata@darapsa.co.id> | 2021-06-23 10:43:05 +0700 | 
|---|---|---|
| committer | Anatasof Wirapraja <anata@darapsa.co.id> | 2021-06-23 10:43:05 +0700 | 
| commit | 2f88d0cc0ce00a071d85f5862f0849d1ec70ffce (patch) | |
| tree | e4f96f53a619cdd86351106aa8cc37aeb335d24e | |
| parent | a24e2cbf7311f041adc5a0c557e8b349ebf2862b (diff) | |
menggunakan warna default untuk sekarang
| -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 |