Showing
7 changed files
with
14 additions
and
4 deletions
... | @@ -7,7 +7,7 @@ | ... | @@ -7,7 +7,7 @@ |
7 | <key>Pods-SwiftWarplyFramework.xcscheme_^#shared#^_</key> | 7 | <key>Pods-SwiftWarplyFramework.xcscheme_^#shared#^_</key> |
8 | <dict> | 8 | <dict> |
9 | <key>orderHint</key> | 9 | <key>orderHint</key> |
10 | - <integer>1</integer> | 10 | + <integer>0</integer> |
11 | </dict> | 11 | </dict> |
12 | </dict> | 12 | </dict> |
13 | </dict> | 13 | </dict> | ... | ... |
... | @@ -7,7 +7,7 @@ | ... | @@ -7,7 +7,7 @@ |
7 | <key>SwiftWarplyFramework.xcscheme_^#shared#^_</key> | 7 | <key>SwiftWarplyFramework.xcscheme_^#shared#^_</key> |
8 | <dict> | 8 | <dict> |
9 | <key>orderHint</key> | 9 | <key>orderHint</key> |
10 | - <integer>0</integer> | 10 | + <integer>1</integer> |
11 | </dict> | 11 | </dict> |
12 | </dict> | 12 | </dict> |
13 | </dict> | 13 | </dict> | ... | ... |
No preview for this file type
This diff is collapsed. Click to expand it.
... | @@ -32,7 +32,10 @@ import UIKit | ... | @@ -32,7 +32,10 @@ import UIKit |
32 | badgeView.layer.cornerRadius = 16.0 | 32 | badgeView.layer.cornerRadius = 16.0 |
33 | 33 | ||
34 | badgeCountView.layer.cornerRadius = 4.0 | 34 | badgeCountView.layer.cornerRadius = 4.0 |
35 | - badgeCountView.backgroundColor = UIColor(red: 0.92, green: 0.75, blue: 0.41, alpha: 1.00) | 35 | + // badgeCountView.backgroundColor = UIColor(red: 0.92, green: 0.75, blue: 0.41, alpha: 1.00) |
36 | + badgeCountView.backgroundColor = UIColor(rgb: 0xE20074) | ||
37 | + | ||
38 | + badgeCountLabel.textColor = .white | ||
36 | } | 39 | } |
37 | 40 | ||
38 | func configureCell(badgeId: String, badgeCount: Int) { | 41 | func configureCell(badgeId: String, badgeCount: Int) { | ... | ... |
... | @@ -40,10 +40,12 @@ import SwiftEventBus | ... | @@ -40,10 +40,12 @@ import SwiftEventBus |
40 | dotLeftWidth.constant = 12 | 40 | dotLeftWidth.constant = 12 |
41 | dotLeftHeight.constant = 12 | 41 | dotLeftHeight.constant = 12 |
42 | dotLeft.layer.cornerRadius = 6 | 42 | dotLeft.layer.cornerRadius = 6 |
43 | + dotLeft.backgroundColor = UIColor(rgb: 0xE20074) | ||
43 | 44 | ||
44 | dotRightWidth.constant = 8 | 45 | dotRightWidth.constant = 8 |
45 | dotRightHeight.constant = 8 | 46 | dotRightHeight.constant = 8 |
46 | dotRight.layer.cornerRadius = 4 | 47 | dotRight.layer.cornerRadius = 4 |
48 | + dotRight.backgroundColor = UIColor(rgb: 0x767676) | ||
47 | 49 | ||
48 | } | 50 | } |
49 | 51 | ||
... | @@ -127,19 +129,23 @@ extension WalletActiveCouponsScrollTableViewCell: UIScrollViewDelegate { | ... | @@ -127,19 +129,23 @@ extension WalletActiveCouponsScrollTableViewCell: UIScrollViewDelegate { |
127 | dotLeftWidth.constant = 8 | 129 | dotLeftWidth.constant = 8 |
128 | dotLeftHeight.constant = 8 | 130 | dotLeftHeight.constant = 8 |
129 | dotLeft.layer.cornerRadius = 4 | 131 | dotLeft.layer.cornerRadius = 4 |
132 | + dotLeft.backgroundColor = UIColor(rgb: 0x767676) | ||
130 | 133 | ||
131 | dotRightWidth.constant = 12 | 134 | dotRightWidth.constant = 12 |
132 | dotRightHeight.constant = 12 | 135 | dotRightHeight.constant = 12 |
133 | dotRight.layer.cornerRadius = 6 | 136 | dotRight.layer.cornerRadius = 6 |
137 | + dotRight.backgroundColor = UIColor(rgb: 0xE20074) | ||
134 | 138 | ||
135 | } else { | 139 | } else { |
136 | dotLeftWidth.constant = 12 | 140 | dotLeftWidth.constant = 12 |
137 | dotLeftHeight.constant = 12 | 141 | dotLeftHeight.constant = 12 |
138 | dotLeft.layer.cornerRadius = 6 | 142 | dotLeft.layer.cornerRadius = 6 |
143 | + dotLeft.backgroundColor = UIColor(rgb: 0xE20074) | ||
139 | 144 | ||
140 | dotRightWidth.constant = 8 | 145 | dotRightWidth.constant = 8 |
141 | dotRightHeight.constant = 8 | 146 | dotRightHeight.constant = 8 |
142 | dotRight.layer.cornerRadius = 4 | 147 | dotRight.layer.cornerRadius = 4 |
148 | + dotRight.backgroundColor = UIColor(rgb: 0x767676) | ||
143 | } | 149 | } |
144 | 150 | ||
145 | } | 151 | } | ... | ... |
... | @@ -42,7 +42,8 @@ import SwiftEventBus | ... | @@ -42,7 +42,8 @@ import SwiftEventBus |
42 | // voucherBannerLabel.text = "Ενημερώσου για το υπόλοιπο επιδότησης" | 42 | // voucherBannerLabel.text = "Ενημερώσου για το υπόλοιπο επιδότησης" |
43 | 43 | ||
44 | voucherCountView.layer.cornerRadius = 4.0 | 44 | voucherCountView.layer.cornerRadius = 4.0 |
45 | - voucherCountView.backgroundColor = UIColor(red: 0.92, green: 0.75, blue: 0.41, alpha: 1.00) | 45 | + // voucherCountView.backgroundColor = UIColor(red: 0.92, green: 0.75, blue: 0.41, alpha: 1.00) |
46 | + voucherCountView.backgroundColor = UIColor(rgb: 0xE20074) | ||
46 | } | 47 | } |
47 | 48 | ||
48 | public override func setSelected(_ selected: Bool, animated: Bool) { | 49 | public override func setSelected(_ selected: Bool, animated: Bool) { | ... | ... |
-
Please register or login to post a comment