43 lines
1.3 KiB
Swift
43 lines
1.3 KiB
Swift
//
|
|
// SearchTokenSuggestionCollectionViewCell.swift
|
|
// Tusker
|
|
//
|
|
// Created by Shadowfacts on 10/1/23.
|
|
// Copyright © 2023 Shadowfacts. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
import Pachyderm
|
|
|
|
class SearchTokenSuggestionCollectionViewCell: UICollectionViewCell {
|
|
private let label = UILabel()
|
|
|
|
override init(frame: CGRect) {
|
|
super.init(frame: frame)
|
|
|
|
label.textColor = .tintColor
|
|
|
|
contentView.backgroundColor = .tintColor.withAlphaComponent(0.2)
|
|
contentView.layer.masksToBounds = true
|
|
contentView.layer.cornerRadius = 6
|
|
contentView.layer.cornerCurve = .continuous
|
|
|
|
label.translatesAutoresizingMaskIntoConstraints = false
|
|
contentView.addSubview(label)
|
|
NSLayoutConstraint.activate([
|
|
label.leadingAnchor.constraint(equalTo: contentView.leadingAnchor, constant: 8),
|
|
label.trailingAnchor.constraint(equalTo: contentView.trailingAnchor, constant: -8),
|
|
label.topAnchor.constraint(equalTo: contentView.topAnchor),
|
|
label.bottomAnchor.constraint(equalTo: contentView.bottomAnchor)
|
|
])
|
|
}
|
|
|
|
required init?(coder: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
|
|
func setText(_ text: String) {
|
|
label.text = text
|
|
}
|
|
}
|