Manos Chorianopoulos

My Rewards color fixes

......@@ -7,7 +7,7 @@
<key>Pods-SwiftWarplyFramework.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>1</integer>
<integer>0</integer>
</dict>
</dict>
</dict>
......
......@@ -7,7 +7,7 @@
<key>SwiftWarplyFramework.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>0</integer>
<integer>1</integer>
</dict>
</dict>
</dict>
......
......@@ -32,7 +32,10 @@ import UIKit
badgeView.layer.cornerRadius = 16.0
badgeCountView.layer.cornerRadius = 4.0
badgeCountView.backgroundColor = UIColor(red: 0.92, green: 0.75, blue: 0.41, alpha: 1.00)
// badgeCountView.backgroundColor = UIColor(red: 0.92, green: 0.75, blue: 0.41, alpha: 1.00)
badgeCountView.backgroundColor = UIColor(rgb: 0xE20074)
badgeCountLabel.textColor = .white
}
func configureCell(badgeId: String, badgeCount: Int) {
......
......@@ -40,10 +40,12 @@ import SwiftEventBus
dotLeftWidth.constant = 12
dotLeftHeight.constant = 12
dotLeft.layer.cornerRadius = 6
dotLeft.backgroundColor = UIColor(rgb: 0xE20074)
dotRightWidth.constant = 8
dotRightHeight.constant = 8
dotRight.layer.cornerRadius = 4
dotRight.backgroundColor = UIColor(rgb: 0x767676)
}
......@@ -127,19 +129,23 @@ extension WalletActiveCouponsScrollTableViewCell: UIScrollViewDelegate {
dotLeftWidth.constant = 8
dotLeftHeight.constant = 8
dotLeft.layer.cornerRadius = 4
dotLeft.backgroundColor = UIColor(rgb: 0x767676)
dotRightWidth.constant = 12
dotRightHeight.constant = 12
dotRight.layer.cornerRadius = 6
dotRight.backgroundColor = UIColor(rgb: 0xE20074)
} else {
dotLeftWidth.constant = 12
dotLeftHeight.constant = 12
dotLeft.layer.cornerRadius = 6
dotLeft.backgroundColor = UIColor(rgb: 0xE20074)
dotRightWidth.constant = 8
dotRightHeight.constant = 8
dotRight.layer.cornerRadius = 4
dotRight.backgroundColor = UIColor(rgb: 0x767676)
}
}
......
......@@ -42,7 +42,8 @@ import SwiftEventBus
// voucherBannerLabel.text = "Ενημερώσου για το υπόλοιπο επιδότησης"
voucherCountView.layer.cornerRadius = 4.0
voucherCountView.backgroundColor = UIColor(red: 0.92, green: 0.75, blue: 0.41, alpha: 1.00)
// voucherCountView.backgroundColor = UIColor(red: 0.92, green: 0.75, blue: 0.41, alpha: 1.00)
voucherCountView.backgroundColor = UIColor(rgb: 0xE20074)
}
public override func setSelected(_ selected: Bool, animated: Bool) {
......