diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-23 10:14:34 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-23 10:14:34 +0800 |
commit | 0581dc058aa38bfa51b742bca3858f6e7361a906 (patch) | |
tree | 8db9c9a1f5407849594714745cf214558115cc06 | |
parent | f7da35cea56f20da35f71f72c1f7319f8f4b40f0 (diff) |
Button is back
-rw-r--r-- | AccountForm.ui.qml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/AccountForm.ui.qml b/AccountForm.ui.qml index 37f1847..7b698ef 100644 --- a/AccountForm.ui.qml +++ b/AccountForm.ui.qml @@ -1,7 +1,10 @@ import QtQuick 2.15 import QtQuick.Controls 2.15 +import QtQuick.Controls.Material 2.15 Rectangle { + property alias skuTextInput: addProduct + property alias submitButton: submit color: "#121212" border.color: "#00000000" @@ -38,4 +41,19 @@ Rectangle { font.family: "Roboto Mono" anchors.topMargin: 16 } + + Button { + id: submit + text: "Tagih" + anchors.left: parent.left + anchors.right: parent.right + anchors.bottom: parent.bottom + font.capitalization: Font.MixedCase + font.family: "Roboto Mono" + anchors.rightMargin: 16 + anchors.leftMargin: 16 + anchors.bottomMargin: 16 + highlighted: true + Material.accent: Material.Grey + } } |