From 0581dc058aa38bfa51b742bca3858f6e7361a906 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=EA=A6=AB=EA=A6=B6=EA=A6=8F=EA=A7=80=EA=A6=A6?= =?UTF-8?q?=EA=A6=BF=EA=A6=A7=EA=A6=AE=EA=A6=91=EA=A6=A9=EA=A6=AD=EA=A7=80?= Date: Wed, 23 Jun 2021 10:14:34 +0800 Subject: Button is back --- AccountForm.ui.qml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) 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 + } } -- cgit v1.2.3