diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-01-17 22:07:57 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-01-17 22:07:57 +0800 |
commit | 8a1fa06ceffe441f432c8ffd1fb15b8103c0db83 (patch) | |
tree | 7aa1495c36096679b6a03bea1c9a25113bf4dc59 | |
parent | 3fc3fd70288b06f778f2acabedf0388d248427a1 (diff) |
Payment method draft
Starting with "Pay with Net Banking"
-rw-r--r-- | CheckoutFlickable.ui.qml | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/CheckoutFlickable.ui.qml b/CheckoutFlickable.ui.qml index e22083b..9923b07 100644 --- a/CheckoutFlickable.ui.qml +++ b/CheckoutFlickable.ui.qml @@ -154,5 +154,59 @@ Flickable { columnSpacing: 0 rowSpacing: 0 } + + ColumnLayout { + Label { + text: qsTr("Payment method") + Layout.fillWidth: true + } + ColumnLayout { + Frame { + Layout.fillWidth: true + ColumnLayout { + anchors.fill: parent + Label { + text: qsTr("Credit or Debit Card") + Layout.fillWidth: true + } + } + } + Frame { + Layout.fillWidth: true + ColumnLayout { + anchors.fill: parent + Label { + text: qsTr("Pay with Net Banking") + Layout.fillWidth: true + } + ColumnLayout { + Label { + text: qsTr("In order to complete your transaction, we will transfer you over to Eduport secure servers. ") + Layout.fillWidth: true + wrapMode: Text.Wrap + } + Label { + text: qsTr("Select your bank from the drop-down list and click proceed to continue with your payment.") + Layout.fillWidth: true + wrapMode: Text.Wrap + } + ComboBox { + model: ListModel { + ListElement { + text: "Bank of America" + } + ListElement { + text: "Bank of India" + } + ListElement { + text: "Bank of London" + } + } + } + } + } + } + } + } } } |