HomeView.swift
3.53 KB
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
//
// HomeView.swift
// InterQR-Internship
//
// Created by Дмитрий Тимофеев on 07.06.2022.
//
import UIKit
class HomeView: UIView {
var logoView: UIImageView = {
var obj = UIImageView()
obj.image = UIImage(named: "InterQR")
return obj
}()
var settingsButton: UIButton = {
var obj = UIButton()
obj.setImage(UIImage(named: "Setting"), for: .normal)
obj.layer.borderWidth = 1
obj.layer.borderColor = UIColor(red: 0.882, green: 0.91, blue: 0.91, alpha: 1).cgColor
obj.layer.cornerRadius = 13
return obj
}()
var homeImage: UIImageView = {
var obj = UIImageView()
obj.image = UIImage(named: "Home")
return obj
}()
var welcomeLabel: UILabel = {
var obj = UILabel()
obj.font = .skModernist(type: .bold, ofSize: 35)
obj.text = "Welcome"
return obj
}()
var doorsLabel: UILabel = {
var obj = UILabel()
obj.font = .skModernist(type: .bold, ofSize: 20)
obj.text = "My doors"
return obj
}()
var tableView: UITableView = {
var obj = UITableView()
obj.separatorStyle = .none
obj.allowsSelection = false
obj.showsVerticalScrollIndicator = false
return obj
}()
var gradientView: UIImageView = {
var obj = UIImageView()
obj.image = UIImage(named: "Gradient")
return obj
}()
var passwordButton: UIButton = {
var obj = UIButton()
obj.setImage(UIImage(named: "Password"), for: .normal)
return obj
}()
override init(frame: CGRect) {
super.init(frame: frame)
backgroundColor = .white
layout()
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
func layout() {
addSubview(logoView)
addSubview(settingsButton)
addSubview(welcomeLabel)
addSubview(homeImage)
addSubview(doorsLabel)
addSubview(tableView)
addSubview(gradientView)
gradientView.addSubview(passwordButton)
logoView.snp.makeConstraints {
$0.top.equalTo(77)
$0.leading.equalTo(24)
}
settingsButton.snp.makeConstraints {
$0.top.equalTo(snp.top).offset(63)
$0.trailing.equalTo(snp.trailing).offset(-27)
$0.height.width.equalTo(45)
}
welcomeLabel.snp.makeConstraints {
$0.top.equalTo(logoView.snp.bottom).offset(63)
$0.leading.equalTo(logoView.snp.leading)
}
homeImage.snp.makeConstraints {
$0.top.equalTo(settingsButton.snp.bottom)
$0.trailing.equalTo(snp.trailing).offset(5)
}
doorsLabel.snp.makeConstraints {
$0.top.equalTo(homeImage.snp.bottom).offset(31)
$0.leading.equalTo(logoView.snp.leading)
}
tableView.snp.makeConstraints {
$0.top.equalTo(doorsLabel.snp.bottom).offset(28)
$0.leading.equalTo(snp.leading).offset(20)
$0.trailing.equalTo(snp.trailing).offset(-27)
$0.bottom.equalToSuperview()
}
gradientView.snp.makeConstraints {
$0.leading.trailing.bottom.equalToSuperview()
$0.height.equalTo(75)
}
passwordButton.snp.makeConstraints {
$0.trailing.equalTo(gradientView.snp.trailing).offset(-48)
$0.bottom.equalTo(gradientView.snp.bottom).offset(-18)
$0.height.width.equalTo(18.5)
}
}
}