summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2022-12-17 14:54:07 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2022-12-17 14:54:07 +0800
commit6fe0624aaa83a87581ee1629d53682939e8f8b1c (patch)
treeea9c7f566c375abd47b03690beee55ea4fdf912d
parentb14486ade263d7db73a278ae0222141edf3dcb3e (diff)
Draft checkout UI
-rw-r--r--CheckoutFlickable.ui.qml37
1 files changed, 37 insertions, 0 deletions
diff --git a/CheckoutFlickable.ui.qml b/CheckoutFlickable.ui.qml
new file mode 100644
index 0000000..64a644f
--- /dev/null
+++ b/CheckoutFlickable.ui.qml
@@ -0,0 +1,37 @@
+import QtQuick 2.15
+import QtQuick.Controls 2.15
+import QtQuick.Layouts 1.15
+
+Flickable {
+ contentHeight: personal.height
+
+ Rectangle {
+ id: personal
+ anchors {
+ top: parent.top
+ left: parent.left
+ right: parent.right
+ }
+
+ ColumnLayout {
+ Label {
+ text: qsTr("Your name *")
+ }
+ TextField {
+ placeholderText: qsTr("Name")
+ Layout.fillWidth: true
+ }
+
+ anchors {
+ top: parent.top
+ topMargin: 25.6
+ left: parent.left
+ leftMargin: 25.6
+ right: parent.right
+ rightMargin: 25.6
+ bottom: parent.bottom
+ bottomMargin: 25.6
+ }
+ }
+ }
+}