-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProfile.ui.qml
132 lines (114 loc) · 3.06 KB
/
Profile.ui.qml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
import QtQuick 2.9
import QtQuick.Controls 2.2
import QtMultimedia 5.9
Page {
width: 380
height: 640
title: qsTr("Dettagli negozio")
Connections {
target: button
onClicked: stackView.pop()
}
Image {
x: (stackView.width/4) - 50
y: 20
width: 100
height: 100
source: "qrc:/images/barlogo.png"
}
Text {
x: (stackView.width/2)
y: 50
text: qsTr("Tag Store")
horizontalAlignment: Text.AlignHCenter
font.pixelSize: 25
}
TextField {
width: stackView.width - 120
x: stackView.width/2 - width/2 + 50
y: 150
text: qsTr("via della Resistenza")
font.italic: true
Text {
anchors {
top: parent.top; bottom: parent.bottom
left: parent.left; leftMargin: -100; bottomMargin: 7
}
verticalAlignment: Text.AlignVCenter
color: parent.color
text: qsTr("Indirizzo")
font.pixelSize: 16
}
}
TextField {
width: stackView.width - 120
x: stackView.width/2 - width/2 + 50
y: 200
text: qsTr("8:00 - 23:00")
font.italic: true
Text {
anchors {
top: parent.top; bottom: parent.bottom
left: parent.left; leftMargin: -100; bottomMargin: 7
}
verticalAlignment: Text.AlignVCenter
color: parent.color
text: qsTr("Orario")
font.pixelSize: 16
}
}
TextField {
width: stackView.width - 120
x: stackView.width/2 - width/2 + 50
y: 250
text: qsTr("0497263965")
font.italic: true
Text {
anchors {
top: parent.top; bottom: parent.bottom
left: parent.left; leftMargin: -100; bottomMargin: 7
}
verticalAlignment: Text.AlignVCenter
color: parent.color
text: qsTr("Telefono")
font.pixelSize: 16
}
}
TextArea {
width: stackView.width - 120
x: stackView.width/2 - width/2 + 50
y: 300
text: qsTr("Negozio di abbigliamento, scarpe e accessori, inclusi borse e gioielli, firmati dalla stessa stilista.")
font.italic: true
wrapMode: Label.WordWrap
Text {
anchors {
top: parent.top; bottom: parent.bottom
left: parent.left; leftMargin: -100; bottomMargin: 7
}
verticalAlignment: Text.AlignVCenter
color: parent.color
text: qsTr("Descrizione")
font.pixelSize: 16
}
}
Text {
id: imagelabel
width: stackView.width
y: 430
x: stackView.width/5
text: qsTr("Immagini")
font.pixelSize: 18
}
Button {
x: imagelabel.x + 100
y: 420
text: qsTr("Aggiungi")
}
Button {
id: button
x: stackView.width/2 - button.width/2
y: 500
text: qsTr("Salva")
}
}