Fix profile no content cell not using non-pure-black background color

This commit is contained in:
Shadowfacts 2023-04-16 15:11:47 -04:00
parent cd9d64410f
commit 813d0433d6
1 changed files with 4 additions and 0 deletions

View File

@ -18,6 +18,10 @@ class ProfileNoContentCollectionViewCell: UICollectionViewListCell {
override init(frame: CGRect) {
super.init(frame: frame)
var config = UIBackgroundConfiguration.listPlainCell()
config.backgroundColor = .appBackground
backgroundConfiguration = config
let title = UILabel()
title.text = "There's nothing here"
title.adjustsFontForContentSizeCategory = true