diff options
| -rw-r--r-- | CheckoutFlickable.ui.qml | 37 | 
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 +			} +		} +	} +}  |