We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1da4e68 commit 77383c1Copy full SHA for 77383c1
Provenance/Game Library/UI/Game Library/Reusable Views/PVGameLibraryCollectionViewCell.swift
@@ -391,9 +391,11 @@ final class PVGameLibraryCollectionViewCell: UICollectionViewCell {
391
@IBOutlet private(set) var titleLabel: UILabel! {
392
didSet {
393
#if os(tvOS)
394
- // The label's alpha will get set to 1 on focus
395
- titleLabel.alpha = 1
396
- titleLabel.textColor = UIColor.darkGray
+ // The label's alpha will get set to 1 on focus
+ titleLabel.alpha = 1
+ titleLabel.textColor = UIColor.darkGray
397
+ titleLabel.shadowColor = UIColor.init(white: 0.2, alpha: 0.5)
398
+ titleLabel.shadowOffset = .init(width: 0.5, height: 0.5)
399
#endif
400
}
401
0 commit comments