blob: d7ad834fdc2f7cf4b8d3a1841b7eefa1883bca17 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
import QtQuick 2.12
import QtQuick.Layouts 1.3
import QtQuick.Controls 2.12
Rectangle {
width: 363
height: 628
color: "#ffffff"
property alias emailButton: emailButton
property alias googleButton: googleButton
border.width: 0
Label {
x: 124
y: 158
width: 74
height: 28
text: qsTr("kelakon")
font.pointSize: 16
anchors.horizontalCenterOffset: 0
anchors.horizontalCenter: parent.horizontalCenter
}
RowLayout {
x: 34
y: 419
width: googleButton.width
height: googleButton.height
anchors.horizontalCenterOffset: 0
anchors.horizontalCenter: parent.horizontalCenter
}
Button {
id: googleButton
x: 31
y: 419
width: 296
height: 50
text: qsTr("Continue with Google")
spacing: 4
anchors.bottomMargin: 31
anchors.bottom: emailButton.top
anchors.horizontalCenterOffset: 0
anchors.horizontalCenter: parent.horizontalCenter
}
Button {
id: emailButton
x: 41
y: 493
width: 296
height: 50
text: qsTr("Continue with E-mail")
anchors.bottom: parent.bottom
anchors.bottomMargin: 80
anchors.left: parent.left
anchors.leftMargin: 34
}
}
|