diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2023-02-07 13:55:21 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2023-02-07 13:55:21 +0700 |
commit | 5f62ac063652264f4bea5d119a0094d13c0c81c0 (patch) | |
tree | e65ac482d1178848e194c358003e355e4056afd4 /CheckoutFlickable.ui.qml | |
parent | 2a891559ca4d76d481452d7089d5fc8e9202bc8b (diff) |
fixed payment layout
Diffstat (limited to 'CheckoutFlickable.ui.qml')
-rw-r--r-- | CheckoutFlickable.ui.qml | 41 |
1 files changed, 30 insertions, 11 deletions
diff --git a/CheckoutFlickable.ui.qml b/CheckoutFlickable.ui.qml index 9b59394..d7b2cf6 100644 --- a/CheckoutFlickable.ui.qml +++ b/CheckoutFlickable.ui.qml @@ -74,9 +74,9 @@ Flickable { font.pointSize: 22 font.family: "roboto" Layout.fillWidth: true - Layout.rightMargin: 16 - Layout.leftMargin: 16 - Layout.topMargin: 16 + Layout.rightMargin: 16 + Layout.leftMargin: 16 + Layout.topMargin: 16 } GridLayout { @@ -341,41 +341,59 @@ Flickable { font.pointSize: 16 font.family: "roboto" Layout.fillWidth: true + padding: 16 } } } - Frame { + Rectangle { + implicitHeight: paymentNetBanking.height + Layout.margins: 16 Layout.fillWidth: true + border.width: 1 + radius: 8 + border.color: "#4d000000" ColumnLayout { - anchors.fill: parent + id: paymentNetBanking + anchors { + left: parent.left + right: parent.right + } Label { text: qsTr("Pay with Net Banking") - font.pointSize: 15 + font.pointSize: 16 + font.family: "roboto" Layout.fillWidth: true + Layout.rightMargin: 16 + Layout.leftMargin: 16 + Layout.topMargin: 16 } ColumnLayout { - + Layout.margins: 16 Label { text: qsTr("In order to complete your transaction, we will transfer you over to Eduport secure servers.") - font.pointSize: 15 + font.pointSize: 14 + font.family: "roboto" wrapMode: Text.Wrap Layout.fillWidth: true } Label { text: qsTr("Select your bank from the drop-down list and click proceed to continue with your payment.") - font.pointSize: 15 + font.pointSize: 16 + font.family: "roboto" wrapMode: Text.Wrap Layout.fillWidth: true } ComboBox { id: banks - font.pointSize: 15 + font.pointSize: 14 + font.family: "roboto" + Layout.topMargin: 24 model: ListModel { ListElement { label: "Please choose one" @@ -393,7 +411,8 @@ Flickable { delegate: ItemDelegate { contentItem: Text { text: label - font.pointSize: 14 + font.pointSize: 16 + font.family: "roboto" } } } |