Revises My Apps UI

This commit is contained in:
Riley Testut
2019-10-23 13:32:17 -07:00
parent 28d27c862f
commit aa52633491
8 changed files with 314 additions and 284 deletions

View File

@@ -15,8 +15,12 @@ class AppBannerView: RSTNibView
@IBOutlet var subtitleLabel: UILabel!
@IBOutlet var iconImageView: AppIconImageView!
@IBOutlet var button: PillButton!
@IBOutlet var buttonLabel: UILabel!
@IBOutlet var betaBadgeView: UIView!
@IBOutlet var backgroundEffectView: UIVisualEffectView!
@IBOutlet private var vibrancyView: UIVisualEffectView!
override func tintColorDidChange()
{
super.tintColorDidChange()
@@ -35,6 +39,6 @@ private extension AppBannerView
self.subtitleLabel.textColor = self.tintColor
self.button.tintColor = self.tintColor
self.backgroundColor = self.tintColor.withAlphaComponent(0.1)
self.backgroundEffectView.backgroundColor = self.tintColor
}
}