mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-25 17:50:59 +00:00
15 lines
484 B
Swift
15 lines
484 B
Swift
|
// Copyright © 2021 Metabolist. All rights reserved.
|
||
|
|
||
|
import UIKit
|
||
|
|
||
|
class SeparatorConfiguredCollectionViewListCell: UICollectionViewListCell {
|
||
|
override func updateConstraints() {
|
||
|
super.updateConstraints()
|
||
|
|
||
|
NSLayoutConstraint.activate([
|
||
|
separatorLayoutGuide.leadingAnchor.constraint(equalTo: safeAreaLayoutGuide.leadingAnchor),
|
||
|
separatorLayoutGuide.trailingAnchor.constraint(equalTo: safeAreaLayoutGuide.trailingAnchor)
|
||
|
])
|
||
|
}
|
||
|
}
|