From 6fe0624aaa83a87581ee1629d53682939e8f8b1c 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: Sat, 17 Dec 2022 14:54:07 +0800 Subject: Draft checkout UI --- CheckoutFlickable.ui.qml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 CheckoutFlickable.ui.qml 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 + } + } + } +} -- cgit v1.2.3