TabsView.swift
1.66 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
//
// TabsView.swift
// browser
//
// Created by Artem Talko on 28.09.2023.
//
import UIKit
import SnapKit
final class TabsView: GradientView {
let openedTabsCollectionView: UICollectionView = {
let obj = UICollectionViewFlowLayout()
obj.minimumInteritemSpacing = 4.sizeW
obj.sectionInset = UIEdgeInsets(top: 16.sizeH, left: 16.sizeW, bottom: 16.sizeH, right: 16.sizeW)
let collectionView = UICollectionView(frame: .zero, collectionViewLayout: obj)
collectionView.showsVerticalScrollIndicator = false
collectionView.backgroundColor = .clear
return collectionView
}()
let tabsToolbarView: TabsToolbarView = {
let obj = TabsToolbarView()
obj.backgroundColor = ColorConstants.SearchbarTintBlue
return obj
}()
override init(frame: CGRect) {
super.init(frame: frame)
setupUI()
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
private func setupUI() {
addSubview(openedTabsCollectionView)
addSubview(tabsToolbarView)
setupConstraints()
}
private func setupConstraints() {
openedTabsCollectionView.snp.makeConstraints { make in
make.top.equalTo(safeAreaLayoutGuide.snp.top)
make.leading.trailing.equalToSuperview()
make.bottom.equalTo(tabsToolbarView.snp.top)
}
tabsToolbarView.snp.makeConstraints { make in
make.leading.equalToSuperview()
make.bottom.equalToSuperview()
make.trailing.equalToSuperview()
}
}
}