Showing
6 changed files
with
17 additions
and
3 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>0</integer> | 10 | + <integer>1</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>1</integer> | 10 | + <integer>0</integer> |
11 | </dict> | 11 | </dict> |
12 | </dict> | 12 | </dict> |
13 | </dict> | 13 | </dict> | ... | ... |
No preview for this file type
... | @@ -63,7 +63,7 @@ import SwiftEventBus | ... | @@ -63,7 +63,7 @@ import SwiftEventBus |
63 | // tableView.clipsToBounds = true | 63 | // tableView.clipsToBounds = true |
64 | // tableView.layer.cornerRadius = 30 | 64 | // tableView.layer.cornerRadius = 30 |
65 | // tableView.layer.maskedCorners = [ .layerMinXMinYCorner] // Top left corner radius | 65 | // tableView.layer.maskedCorners = [ .layerMinXMinYCorner] // Top left corner radius |
66 | - tableView.contentInset.top = 50 | 66 | + tableView.contentInset.top = 25 |
67 | 67 | ||
68 | // Add Top left corner radius | 68 | // Add Top left corner radius |
69 | // mainView.clipsToBounds = true | 69 | // mainView.clipsToBounds = true | ... | ... |
This diff is collapsed. Click to expand it.
... | @@ -225,6 +225,13 @@ import SwiftEventBus | ... | @@ -225,6 +225,13 @@ import SwiftEventBus |
225 | dfyEarnAmountLabel.text = totalCouponValueString + "€" | 225 | dfyEarnAmountLabel.text = totalCouponValueString + "€" |
226 | // dfyEarnAmountLabel.font = UIFont(name: "PeridotPE-Bold", size: 14) | 226 | // dfyEarnAmountLabel.font = UIFont(name: "PeridotPE-Bold", size: 14) |
227 | 227 | ||
228 | + let totalCouponValueIntCount = String(Int(totalCouponValue)).count | ||
229 | + if (totalCouponValueIntCount >= 3) { | ||
230 | + dfyEarnAmountLabel.font = UIFont(name: "PeridotPE-Bold", size: 11) | ||
231 | + } else { | ||
232 | + dfyEarnAmountLabel.font = UIFont(name: "PeridotPE-Bold", size: 13) | ||
233 | + } | ||
234 | + | ||
228 | if (loyaltyBadge._couponCount == 0) { | 235 | if (loyaltyBadge._couponCount == 0) { |
229 | couponEarnView.isHidden = true | 236 | couponEarnView.isHidden = true |
230 | couponEarnViewHeight.constant = 0 | 237 | couponEarnViewHeight.constant = 0 |
... | @@ -277,6 +284,13 @@ import SwiftEventBus | ... | @@ -277,6 +284,13 @@ import SwiftEventBus |
277 | 284 | ||
278 | couponEarnAmountLabel.text = totalCouponDiscountString + "€" | 285 | couponEarnAmountLabel.text = totalCouponDiscountString + "€" |
279 | 286 | ||
287 | + let totalCouponDiscountIntCount = String(Int(totalCouponDiscount)).count | ||
288 | + if (totalCouponDiscountIntCount >= 3) { | ||
289 | + couponEarnAmountLabel.font = UIFont(name: "PeridotPE-Bold", size: 11) | ||
290 | + } else { | ||
291 | + couponEarnAmountLabel.font = UIFont(name: "PeridotPE-Bold", size: 13) | ||
292 | + } | ||
293 | + | ||
280 | print("Loyalty Badge Value: " + totalCouponDiscountString) | 294 | print("Loyalty Badge Value: " + totalCouponDiscountString) |
281 | print("Loyalty Badge Count: " + String(loyaltyBadge._couponCount)) | 295 | print("Loyalty Badge Count: " + String(loyaltyBadge._couponCount)) |
282 | 296 | ... | ... |
-
Please register or login to post a comment