blob: 64a644f4b131a5f75198373b8039eabe75f6e934 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
}
}
}
}
|