Showing
10 changed files
with
137 additions
and
114 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
... | @@ -55,8 +55,8 @@ import UIKit | ... | @@ -55,8 +55,8 @@ import UIKit |
55 | self.layer.shadowRadius = 1.0 | 55 | self.layer.shadowRadius = 1.0 |
56 | 56 | ||
57 | activeCodeView.layer.cornerRadius = 16.5 | 57 | activeCodeView.layer.cornerRadius = 16.5 |
58 | - activeCodeView.layer.borderWidth = 1 | 58 | +// activeCodeView.layer.borderWidth = 1 |
59 | - activeCodeView.layer.borderColor = UIColor(red: 0.90, green: 0.90, blue: 0.90, alpha: 1.00).cgColor | 59 | +// activeCodeView.layer.borderColor = UIColor(red: 0.90, green: 0.90, blue: 0.90, alpha: 1.00).cgColor |
60 | // activeCodeView.layer.shadowColor = UIColor(red: 0.00, green: 0.00, blue: 0.00, alpha: 0.16).cgColor | 60 | // activeCodeView.layer.shadowColor = UIColor(red: 0.00, green: 0.00, blue: 0.00, alpha: 0.16).cgColor |
61 | // activeCodeView.layer.shadowOffset = CGSize(width: 0.0, height: 0.0) | 61 | // activeCodeView.layer.shadowOffset = CGSize(width: 0.0, height: 0.0) |
62 | // activeCodeView.layer.shadowOpacity = 1.0 | 62 | // activeCodeView.layer.shadowOpacity = 1.0 | ... | ... |
... | @@ -34,14 +34,14 @@ class AnalysisHeaderMessageViewCell: UITableViewCell { | ... | @@ -34,14 +34,14 @@ class AnalysisHeaderMessageViewCell: UITableViewCell { |
34 | 34 | ||
35 | // message | 35 | // message |
36 | messageLabel.textColor = UIColor(rgb: 0x212121) | 36 | messageLabel.textColor = UIColor(rgb: 0x212121) |
37 | - messageLabelView.layer.borderWidth = 1.0 | 37 | +// messageLabelView.layer.borderWidth = 1.0 |
38 | - messageLabelView.layer.borderColor = UIColor(rgb: 0xE6E6E6).cgColor | 38 | +// messageLabelView.layer.borderColor = UIColor(rgb: 0xE6E6E6).cgColor |
39 | messageLabelView.layer.cornerRadius = 16.5 | 39 | messageLabelView.layer.cornerRadius = 16.5 |
40 | messageLabelView.backgroundColor = .white | 40 | messageLabelView.backgroundColor = .white |
41 | 41 | ||
42 | // messageLabel.text = "Μέχρι τώρα έχεις κερδίσει " + totalCouponDiscountString + "€ σε προσφορές από " + String(loyaltyBadge._couponCount) + " κουπόνια!" | 42 | // messageLabel.text = "Μέχρι τώρα έχεις κερδίσει " + totalCouponDiscountString + "€ σε προσφορές από " + String(loyaltyBadge._couponCount) + " κουπόνια!" |
43 | - | ||
44 | } | 43 | } |
44 | + | ||
45 | } | 45 | } |
46 | 46 | ||
47 | extension AnalysisHeaderMessageViewCell { | 47 | extension AnalysisHeaderMessageViewCell { | ... | ... |
... | @@ -47,7 +47,7 @@ class AnalysisItemViewCell: UITableViewCell { | ... | @@ -47,7 +47,7 @@ class AnalysisItemViewCell: UITableViewCell { |
47 | priceLabel.textColor = UIColor(rgb: 0x212121) | 47 | priceLabel.textColor = UIColor(rgb: 0x212121) |
48 | 48 | ||
49 | // subtitle | 49 | // subtitle |
50 | - subtitleLabel.textColor = UIColor(rgb: 0x9D9D9C) | 50 | + subtitleLabel.textColor = UIColor(rgb: 0x212121) |
51 | } | 51 | } |
52 | } | 52 | } |
53 | 53 | ... | ... |
... | @@ -23,6 +23,12 @@ class HistoryViewController: AnalysisChildViewController { | ... | @@ -23,6 +23,12 @@ class HistoryViewController: AnalysisChildViewController { |
23 | self.tableView.delegate = self | 23 | self.tableView.delegate = self |
24 | self.tableView.dataSource = self | 24 | self.tableView.dataSource = self |
25 | 25 | ||
26 | + // Add shadow | ||
27 | + self.tableView.layer.shadowColor = UIColor(red: 0.00, green: 0.00, blue: 0.00, alpha: 0.2).cgColor | ||
28 | + self.tableView.layer.shadowOffset = CGSize(width: 0.0, height: 1.0) | ||
29 | + self.tableView.layer.shadowOpacity = 1.0 | ||
30 | + self.tableView.layer.shadowRadius = 1.0 | ||
31 | + | ||
26 | self.refreshControl = UIRefreshControl() | 32 | self.refreshControl = UIRefreshControl() |
27 | self.refreshControl?.addTarget(self, action: #selector(handleRefresh(_:)), for: .valueChanged) | 33 | self.refreshControl?.addTarget(self, action: #selector(handleRefresh(_:)), for: .valueChanged) |
28 | 34 | ||
... | @@ -159,7 +165,8 @@ class HistoryViewController: AnalysisChildViewController { | ... | @@ -159,7 +165,8 @@ class HistoryViewController: AnalysisChildViewController { |
159 | let view = UIView(frame: CGRect(x: 0, y: 0, width: tableView.frame.width, height: 50)) | 165 | let view = UIView(frame: CGRect(x: 0, y: 0, width: tableView.frame.width, height: 50)) |
160 | 166 | ||
161 | let viewBorder = UIView(frame: CGRect(x: 10, y: 0, width: view.frame.width-20, height: view.frame.height)) | 167 | let viewBorder = UIView(frame: CGRect(x: 10, y: 0, width: view.frame.width-20, height: view.frame.height)) |
162 | - viewBorder.backgroundColor = UIColor(red: 0.90, green: 0.90, blue: 0.90, alpha: 1.00) | 168 | + viewBorder.backgroundColor = .white |
169 | +// viewBorder.backgroundColor = UIColor(red: 0.90, green: 0.90, blue: 0.90, alpha: 1.00) | ||
163 | 170 | ||
164 | viewBorder.layer.cornerRadius = 16.5 | 171 | viewBorder.layer.cornerRadius = 16.5 |
165 | viewBorder.layer.maskedCorners = [ .layerMinXMinYCorner, .layerMaxXMinYCorner] // Top left, bottom right corner radius | 172 | viewBorder.layer.maskedCorners = [ .layerMinXMinYCorner, .layerMaxXMinYCorner] // Top left, bottom right corner radius |
... | @@ -175,6 +182,12 @@ class HistoryViewController: AnalysisChildViewController { | ... | @@ -175,6 +182,12 @@ class HistoryViewController: AnalysisChildViewController { |
175 | titleLabel.textColor = UIColor(red: 0.13, green: 0.13, blue: 0.13, alpha: 1.00) | 182 | titleLabel.textColor = UIColor(red: 0.13, green: 0.13, blue: 0.13, alpha: 1.00) |
176 | titleLabel.text = "Αναλυτικά" | 183 | titleLabel.text = "Αναλυτικά" |
177 | 184 | ||
185 | + // Add shadow | ||
186 | +// view.layer.shadowColor = UIColor(red: 0.00, green: 0.00, blue: 0.00, alpha: 0.2).cgColor | ||
187 | +// view.layer.shadowOffset = CGSize(width: 0.0, height: -1.0) | ||
188 | +// view.layer.shadowOpacity = 1.0 | ||
189 | +// view.layer.shadowRadius = 1.0 | ||
190 | + | ||
178 | view.addSubview(viewBorder) | 191 | view.addSubview(viewBorder) |
179 | viewBorder.addSubview(viewInner) | 192 | viewBorder.addSubview(viewInner) |
180 | viewInner.addSubview(titleLabel) | 193 | viewInner.addSubview(titleLabel) |
... | @@ -220,17 +233,18 @@ class HistoryViewController: AnalysisChildViewController { | ... | @@ -220,17 +233,18 @@ class HistoryViewController: AnalysisChildViewController { |
220 | let view = UIView(frame: CGRect(x: 0, y: 0, width: tableView.frame.width, height: 30)) | 233 | let view = UIView(frame: CGRect(x: 0, y: 0, width: tableView.frame.width, height: 30)) |
221 | 234 | ||
222 | let viewBorder = UIView(frame: CGRect(x: 10, y: 0, width: view.frame.width-20, height: view.frame.height)) | 235 | let viewBorder = UIView(frame: CGRect(x: 10, y: 0, width: view.frame.width-20, height: view.frame.height)) |
223 | - viewBorder.backgroundColor = UIColor(red: 0.90, green: 0.90, blue: 0.90, alpha: 1.00) | 236 | + viewBorder.backgroundColor = .white |
237 | +// viewBorder.backgroundColor = UIColor(red: 0.90, green: 0.90, blue: 0.90, alpha: 1.00) | ||
224 | 238 | ||
225 | viewBorder.layer.cornerRadius = 16.5 | 239 | viewBorder.layer.cornerRadius = 16.5 |
226 | viewBorder.layer.maskedCorners = [ .layerMinXMaxYCorner, .layerMaxXMaxYCorner] // bottom left, bottom right corner radius | 240 | viewBorder.layer.maskedCorners = [ .layerMinXMaxYCorner, .layerMaxXMaxYCorner] // bottom left, bottom right corner radius |
227 | 241 | ||
228 | let viewInner = UIView(frame: CGRect(x: 1, y: 0, width: viewBorder.frame.width-2, height: viewBorder.frame.height-1)) | 242 | let viewInner = UIView(frame: CGRect(x: 1, y: 0, width: viewBorder.frame.width-2, height: viewBorder.frame.height-1)) |
229 | - viewInner.backgroundColor = .white | 243 | + viewInner.backgroundColor = .white |
230 | 244 | ||
231 | viewInner.layer.cornerRadius = 16.5 | 245 | viewInner.layer.cornerRadius = 16.5 |
232 | viewInner.layer.maskedCorners = [ .layerMinXMaxYCorner, .layerMaxXMaxYCorner] // bottom left, bottom right corner radius | 246 | viewInner.layer.maskedCorners = [ .layerMinXMaxYCorner, .layerMaxXMaxYCorner] // bottom left, bottom right corner radius |
233 | - | 247 | + |
234 | view.addSubview(viewBorder) | 248 | view.addSubview(viewBorder) |
235 | viewBorder.addSubview(viewInner) | 249 | viewBorder.addSubview(viewInner) |
236 | return view | 250 | return view | ... | ... |
... | @@ -1088,8 +1088,8 @@ | ... | @@ -1088,8 +1088,8 @@ |
1088 | <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" contentViewInsetsToSafeArea="NO" id="IAk-m8-ZIC"> | 1088 | <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" contentViewInsetsToSafeArea="NO" id="IAk-m8-ZIC"> |
1089 | <rect key="frame" x="0.0" y="0.0" width="414" height="896"/> | 1089 | <rect key="frame" x="0.0" y="0.0" width="414" height="896"/> |
1090 | <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> | 1090 | <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
1091 | - <color key="backgroundColor" red="0.94901960784313721" green="0.94901960784313721" blue="0.95294117647058818" alpha="1" colorSpace="custom" customColorSpace="sRGB"/> | 1091 | + <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> |
1092 | - <color key="sectionIndexBackgroundColor" red="0.94901960784313721" green="0.94901960784313721" blue="0.95294117647058818" alpha="1" colorSpace="calibratedRGB"/> | 1092 | + <color key="sectionIndexBackgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> |
1093 | <prototypes> | 1093 | <prototypes> |
1094 | <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="AnalysisMoreViewCell" id="rpm-JS-xpJ" customClass="AnalysisMoreViewCell" customModule="SwiftWarplyFramework" customModuleProvider="target"> | 1094 | <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="AnalysisMoreViewCell" id="rpm-JS-xpJ" customClass="AnalysisMoreViewCell" customModule="SwiftWarplyFramework" customModuleProvider="target"> |
1095 | <rect key="frame" x="0.0" y="55.5" width="414" height="60"/> | 1095 | <rect key="frame" x="0.0" y="55.5" width="414" height="60"/> |
... | @@ -1201,17 +1201,17 @@ | ... | @@ -1201,17 +1201,17 @@ |
1201 | </connections> | 1201 | </connections> |
1202 | </tableViewCell> | 1202 | </tableViewCell> |
1203 | <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="AnalysisHeaderMessageViewCell" id="QEi-yz-oxe" customClass="AnalysisHeaderMessageViewCell" customModule="SwiftWarplyFramework" customModuleProvider="target"> | 1203 | <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="AnalysisHeaderMessageViewCell" id="QEi-yz-oxe" customClass="AnalysisHeaderMessageViewCell" customModule="SwiftWarplyFramework" customModuleProvider="target"> |
1204 | - <rect key="frame" x="0.0" y="299" width="414" height="305.5"/> | 1204 | + <rect key="frame" x="0.0" y="299" width="414" height="303.5"/> |
1205 | <autoresizingMask key="autoresizingMask"/> | 1205 | <autoresizingMask key="autoresizingMask"/> |
1206 | <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="QEi-yz-oxe" id="ioY-rQ-Gkc"> | 1206 | <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="QEi-yz-oxe" id="ioY-rQ-Gkc"> |
1207 | - <rect key="frame" x="0.0" y="0.0" width="414" height="305.5"/> | 1207 | + <rect key="frame" x="0.0" y="0.0" width="414" height="303.5"/> |
1208 | <autoresizingMask key="autoresizingMask"/> | 1208 | <autoresizingMask key="autoresizingMask"/> |
1209 | <subviews> | 1209 | <subviews> |
1210 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="eDd-bE-Vn4"> | 1210 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="eDd-bE-Vn4"> |
1211 | - <rect key="frame" x="10" y="155" width="394" height="92"/> | 1211 | + <rect key="frame" x="10" y="155" width="394" height="90"/> |
1212 | <subviews> | 1212 | <subviews> |
1213 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Μέχρι τώρα έχεις κερδίσει 20,00€ σε προσφορές από 3 κουπόνια!" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="pCs-3v-td9"> | 1213 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Μέχρι τώρα έχεις κερδίσει 20,00€ σε προσφορές από 3 κουπόνια!" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="pCs-3v-td9"> |
1214 | - <rect key="frame" x="40" y="25" width="314" height="42"/> | 1214 | + <rect key="frame" x="40" y="25" width="314" height="40"/> |
1215 | <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> | 1215 | <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> |
1216 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="17"/> | 1216 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="17"/> |
1217 | <nil key="textColor"/> | 1217 | <nil key="textColor"/> |
... | @@ -1243,7 +1243,7 @@ | ... | @@ -1243,7 +1243,7 @@ |
1243 | <nil key="highlightedColor"/> | 1243 | <nil key="highlightedColor"/> |
1244 | </label> | 1244 | </label> |
1245 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Δεν έχεις εξαργυρώσει ακόμη κουπόνια" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tAl-tt-29c"> | 1245 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Δεν έχεις εξαργυρώσει ακόμη κουπόνια" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tAl-tt-29c"> |
1246 | - <rect key="frame" x="20" y="277" width="374" height="18.5"/> | 1246 | + <rect key="frame" x="20" y="275" width="374" height="18.5"/> |
1247 | <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> | 1247 | <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> |
1248 | <constraints> | 1248 | <constraints> |
1249 | <constraint firstAttribute="height" constant="18.5" id="LGx-EG-LQm"/> | 1249 | <constraint firstAttribute="height" constant="18.5" id="LGx-EG-LQm"/> |
... | @@ -1286,17 +1286,17 @@ | ... | @@ -1286,17 +1286,17 @@ |
1286 | </connections> | 1286 | </connections> |
1287 | </tableViewCell> | 1287 | </tableViewCell> |
1288 | <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" indentationWidth="10" reuseIdentifier="AnalysisItemViewCell" id="1QI-wl-och" customClass="AnalysisItemViewCell" customModule="SwiftWarplyFramework" customModuleProvider="target"> | 1288 | <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" indentationWidth="10" reuseIdentifier="AnalysisItemViewCell" id="1QI-wl-och" customClass="AnalysisItemViewCell" customModule="SwiftWarplyFramework" customModuleProvider="target"> |
1289 | - <rect key="frame" x="0.0" y="604.5" width="414" height="94.5"/> | 1289 | + <rect key="frame" x="0.0" y="602.5" width="414" height="92.5"/> |
1290 | <autoresizingMask key="autoresizingMask"/> | 1290 | <autoresizingMask key="autoresizingMask"/> |
1291 | <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="1QI-wl-och" id="8cF-3w-K35"> | 1291 | <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="1QI-wl-och" id="8cF-3w-K35"> |
1292 | - <rect key="frame" x="0.0" y="0.0" width="414" height="94.5"/> | 1292 | + <rect key="frame" x="0.0" y="0.0" width="414" height="92.5"/> |
1293 | <autoresizingMask key="autoresizingMask"/> | 1293 | <autoresizingMask key="autoresizingMask"/> |
1294 | <subviews> | 1294 | <subviews> |
1295 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="vGa-dC-LEh" userLabel="Border View"> | 1295 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="vGa-dC-LEh" userLabel="Border View"> |
1296 | - <rect key="frame" x="10" y="0.0" width="394" height="94.5"/> | 1296 | + <rect key="frame" x="10" y="0.0" width="394" height="92.5"/> |
1297 | <subviews> | 1297 | <subviews> |
1298 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="UNS-g9-hv1" userLabel="Inner View"> | 1298 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="UNS-g9-hv1" userLabel="Inner View"> |
1299 | - <rect key="frame" x="1" y="0.0" width="392" height="94.5"/> | 1299 | + <rect key="frame" x="1" y="0.0" width="392" height="92.5"/> |
1300 | <subviews> | 1300 | <subviews> |
1301 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="05/05/2022" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="fTm-5M-hIw" userLabel="Date"> | 1301 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="05/05/2022" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="fTm-5M-hIw" userLabel="Date"> |
1302 | <rect key="frame" x="20" y="25" width="352" height="16"/> | 1302 | <rect key="frame" x="20" y="25" width="352" height="16"/> |
... | @@ -1308,29 +1308,29 @@ | ... | @@ -1308,29 +1308,29 @@ |
1308 | <nil key="highlightedColor"/> | 1308 | <nil key="highlightedColor"/> |
1309 | </label> | 1309 | </label> |
1310 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="VO6-s8-Izh"> | 1310 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="VO6-s8-Izh"> |
1311 | - <rect key="frame" x="20" y="51" width="352" height="43.5"/> | 1311 | + <rect key="frame" x="20" y="51" width="352" height="41.5"/> |
1312 | <subviews> | 1312 | <subviews> |
1313 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="0VZ-nT-qq8"> | 1313 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="0VZ-nT-qq8"> |
1314 | - <rect key="frame" x="0.0" y="8" width="28" height="28"/> | 1314 | + <rect key="frame" x="0.0" y="7" width="28" height="28"/> |
1315 | <constraints> | 1315 | <constraints> |
1316 | <constraint firstAttribute="height" constant="28" id="hXy-CH-geH"/> | 1316 | <constraint firstAttribute="height" constant="28" id="hXy-CH-geH"/> |
1317 | <constraint firstAttribute="width" constant="28" id="zBx-iM-Wrb"/> | 1317 | <constraint firstAttribute="width" constant="28" id="zBx-iM-Wrb"/> |
1318 | </constraints> | 1318 | </constraints> |
1319 | </imageView> | 1319 | </imageView> |
1320 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="248" verticalHuggingPriority="251" text="BOX" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Tb7-JM-oFV" userLabel="Title"> | 1320 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="248" verticalHuggingPriority="251" text="BOX" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Tb7-JM-oFV" userLabel="Title"> |
1321 | - <rect key="frame" x="38" y="0.0" width="251.5" height="21"/> | 1321 | + <rect key="frame" x="38" y="0.0" width="261" height="20"/> |
1322 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="17"/> | 1322 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="17"/> |
1323 | <color key="textColor" red="0.12941176469999999" green="0.12941176469999999" blue="0.12941176469999999" alpha="1" colorSpace="calibratedRGB"/> | 1323 | <color key="textColor" red="0.12941176469999999" green="0.12941176469999999" blue="0.12941176469999999" alpha="1" colorSpace="calibratedRGB"/> |
1324 | <nil key="highlightedColor"/> | 1324 | <nil key="highlightedColor"/> |
1325 | </label> | 1325 | </label> |
1326 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="248" verticalHuggingPriority="251" text="Έκπτωτικό κουπόνι" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="GY5-9C-gEy" userLabel="Subtitle"> | 1326 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="248" verticalHuggingPriority="251" text="Έκπτωτικό κουπόνι" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="GY5-9C-gEy" userLabel="Subtitle"> |
1327 | - <rect key="frame" x="38" y="26" width="251.5" height="17.5"/> | 1327 | + <rect key="frame" x="38" y="25" width="261" height="16.5"/> |
1328 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="14"/> | 1328 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="14"/> |
1329 | - <color key="textColor" red="0.61568627450000002" green="0.61568627450000002" blue="0.61176470589999998" alpha="1" colorSpace="calibratedRGB"/> | 1329 | + <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> |
1330 | <nil key="highlightedColor"/> | 1330 | <nil key="highlightedColor"/> |
1331 | </label> | 1331 | </label> |
1332 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" horizontalCompressionResistancePriority="751" text="4,00€" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="gkJ-YA-1ia" userLabel="Price"> | 1332 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" horizontalCompressionResistancePriority="751" text="4,00€" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="gkJ-YA-1ia" userLabel="Price"> |
1333 | - <rect key="frame" x="299.5" y="12" width="52.5" height="20"/> | 1333 | + <rect key="frame" x="309" y="11" width="43" height="20"/> |
1334 | <constraints> | 1334 | <constraints> |
1335 | <constraint firstAttribute="height" constant="20" id="OXk-1Q-MIr"/> | 1335 | <constraint firstAttribute="height" constant="20" id="OXk-1Q-MIr"/> |
1336 | </constraints> | 1336 | </constraints> |
... | @@ -1371,7 +1371,7 @@ | ... | @@ -1371,7 +1371,7 @@ |
1371 | </constraints> | 1371 | </constraints> |
1372 | </view> | 1372 | </view> |
1373 | </subviews> | 1373 | </subviews> |
1374 | - <color key="backgroundColor" red="0.90196078430000004" green="0.90196078430000004" blue="0.90196078430000004" alpha="1" colorSpace="calibratedRGB"/> | 1374 | + <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> |
1375 | <constraints> | 1375 | <constraints> |
1376 | <constraint firstAttribute="bottom" secondItem="UNS-g9-hv1" secondAttribute="bottom" id="9pC-VG-oP2"/> | 1376 | <constraint firstAttribute="bottom" secondItem="UNS-g9-hv1" secondAttribute="bottom" id="9pC-VG-oP2"/> |
1377 | <constraint firstAttribute="trailing" secondItem="UNS-g9-hv1" secondAttribute="trailing" constant="1" id="m2S-t2-BoJ"/> | 1377 | <constraint firstAttribute="trailing" secondItem="UNS-g9-hv1" secondAttribute="trailing" constant="1" id="m2S-t2-BoJ"/> |
... | @@ -1442,13 +1442,13 @@ | ... | @@ -1442,13 +1442,13 @@ |
1442 | </constraints> | 1442 | </constraints> |
1443 | </imageView> | 1443 | </imageView> |
1444 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Γιώργος Γεωργίου" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="1XZ-NB-F8P"> | 1444 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Γιώργος Γεωργίου" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="1XZ-NB-F8P"> |
1445 | - <rect key="frame" x="20" y="105" width="374" height="21"/> | 1445 | + <rect key="frame" x="20" y="105" width="374" height="20"/> |
1446 | <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="17"/> | 1446 | <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="17"/> |
1447 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> | 1447 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> |
1448 | <nil key="highlightedColor"/> | 1448 | <nil key="highlightedColor"/> |
1449 | </label> | 1449 | </label> |
1450 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="tailTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="UNL-Oh-sPV"> | 1450 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="tailTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="UNL-Oh-sPV"> |
1451 | - <rect key="frame" x="172" y="136" width="70" height="312"/> | 1451 | + <rect key="frame" x="174" y="135" width="66" height="313"/> |
1452 | <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> | 1452 | <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> |
1453 | <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="15"/> | 1453 | <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="15"/> |
1454 | <inset key="contentEdgeInsets" minX="10" minY="5" maxX="10" maxY="5"/> | 1454 | <inset key="contentEdgeInsets" minX="10" minY="5" maxX="10" maxY="5"/> |
... | @@ -1486,7 +1486,7 @@ | ... | @@ -1486,7 +1486,7 @@ |
1486 | <rect key="frame" x="25" y="0.0" width="379" height="75"/> | 1486 | <rect key="frame" x="25" y="0.0" width="379" height="75"/> |
1487 | <subviews> | 1487 | <subviews> |
1488 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Μέχρι τώρα έχεις κερδίσει 18,00€ με το DEALS for YOU!" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="h7B-UX-3wG"> | 1488 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Μέχρι τώρα έχεις κερδίσει 18,00€ με το DEALS for YOU!" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="h7B-UX-3wG"> |
1489 | - <rect key="frame" x="65" y="16.5" width="304" height="42"/> | 1489 | + <rect key="frame" x="65" y="17.5" width="304" height="40"/> |
1490 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="17"/> | 1490 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="17"/> |
1491 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> | 1491 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> |
1492 | <nil key="highlightedColor"/> | 1492 | <nil key="highlightedColor"/> |
... | @@ -1506,7 +1506,7 @@ | ... | @@ -1506,7 +1506,7 @@ |
1506 | <rect key="frame" x="0.0" y="0.0" width="70" height="70"/> | 1506 | <rect key="frame" x="0.0" y="0.0" width="70" height="70"/> |
1507 | </imageView> | 1507 | </imageView> |
1508 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="18,00€" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="AIw-YV-t1D"> | 1508 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="18,00€" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="AIw-YV-t1D"> |
1509 | - <rect key="frame" x="5" y="44" width="60" height="16"/> | 1509 | + <rect key="frame" x="5" y="44.5" width="60" height="15.5"/> |
1510 | <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="13"/> | 1510 | <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="13"/> |
1511 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> | 1511 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> |
1512 | <nil key="highlightedColor"/> | 1512 | <nil key="highlightedColor"/> |
... | @@ -1560,7 +1560,7 @@ | ... | @@ -1560,7 +1560,7 @@ |
1560 | <rect key="frame" x="25" y="0.0" width="379" height="75"/> | 1560 | <rect key="frame" x="25" y="0.0" width="379" height="75"/> |
1561 | <subviews> | 1561 | <subviews> |
1562 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Μέχρι τώρα έχεις κερδίσει 20,00€ σε προσφορές από 3 κουπόνια!" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="WdW-lP-g1v"> | 1562 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Μέχρι τώρα έχεις κερδίσει 20,00€ σε προσφορές από 3 κουπόνια!" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="WdW-lP-g1v"> |
1563 | - <rect key="frame" x="65" y="20.5" width="304" height="34.5"/> | 1563 | + <rect key="frame" x="65" y="21" width="304" height="33"/> |
1564 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="14"/> | 1564 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="14"/> |
1565 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> | 1565 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> |
1566 | <nil key="highlightedColor"/> | 1566 | <nil key="highlightedColor"/> |
... | @@ -1580,7 +1580,7 @@ | ... | @@ -1580,7 +1580,7 @@ |
1580 | <rect key="frame" x="0.0" y="0.0" width="70" height="70"/> | 1580 | <rect key="frame" x="0.0" y="0.0" width="70" height="70"/> |
1581 | </imageView> | 1581 | </imageView> |
1582 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="20,00€" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cbA-fm-1uO"> | 1582 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="20,00€" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cbA-fm-1uO"> |
1583 | - <rect key="frame" x="5" y="44" width="60" height="16"/> | 1583 | + <rect key="frame" x="5" y="44.5" width="60" height="15.5"/> |
1584 | <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="13"/> | 1584 | <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="13"/> |
1585 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> | 1585 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> |
1586 | <nil key="highlightedColor"/> | 1586 | <nil key="highlightedColor"/> |
... | @@ -1743,7 +1743,7 @@ | ... | @@ -1743,7 +1743,7 @@ |
1743 | </constraints> | 1743 | </constraints> |
1744 | </imageView> | 1744 | </imageView> |
1745 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="SIP-ou-T3X"> | 1745 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="SIP-ou-T3X"> |
1746 | - <rect key="frame" x="0.0" y="125" width="374" height="18.5"/> | 1746 | + <rect key="frame" x="0.0" y="125" width="374" height="17.5"/> |
1747 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="15"/> | 1747 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="15"/> |
1748 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> | 1748 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> |
1749 | <nil key="highlightedColor"/> | 1749 | <nil key="highlightedColor"/> |
... | @@ -1819,22 +1819,22 @@ | ... | @@ -1819,22 +1819,22 @@ |
1819 | </constraints> | 1819 | </constraints> |
1820 | </view> | 1820 | </view> |
1821 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="BAb-kn-pw0"> | 1821 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="BAb-kn-pw0"> |
1822 | - <rect key="frame" x="119" y="-15.5" width="255" height="21"/> | 1822 | + <rect key="frame" x="119" y="-13.5" width="255" height="20.5"/> |
1823 | <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="17"/> | 1823 | <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="17"/> |
1824 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> | 1824 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> |
1825 | <nil key="highlightedColor"/> | 1825 | <nil key="highlightedColor"/> |
1826 | </label> | 1826 | </label> |
1827 | <stackView opaque="NO" contentMode="scaleToFill" alignment="center" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="RJe-Li-bx3"> | 1827 | <stackView opaque="NO" contentMode="scaleToFill" alignment="center" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="RJe-Li-bx3"> |
1828 | - <rect key="frame" x="119" y="10.5" width="255" height="43.5"/> | 1828 | + <rect key="frame" x="119" y="12" width="255" height="41"/> |
1829 | <subviews> | 1829 | <subviews> |
1830 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="wBw-w0-bGt"> | 1830 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="wBw-w0-bGt"> |
1831 | - <rect key="frame" x="0.0" y="0.0" width="127.5" height="43.5"/> | 1831 | + <rect key="frame" x="0.0" y="0.0" width="127.5" height="41"/> |
1832 | <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="35"/> | 1832 | <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="35"/> |
1833 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> | 1833 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> |
1834 | <nil key="highlightedColor"/> | 1834 | <nil key="highlightedColor"/> |
1835 | </label> | 1835 | </label> |
1836 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Yd2-ue-tBk"> | 1836 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Yd2-ue-tBk"> |
1837 | - <rect key="frame" x="132.5" y="14.5" width="122.5" height="15"/> | 1837 | + <rect key="frame" x="132.5" y="13.5" width="122.5" height="14"/> |
1838 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="12"/> | 1838 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="12"/> |
1839 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> | 1839 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> |
1840 | <nil key="highlightedColor"/> | 1840 | <nil key="highlightedColor"/> |
... | @@ -1846,7 +1846,7 @@ | ... | @@ -1846,7 +1846,7 @@ |
1846 | </constraints> | 1846 | </constraints> |
1847 | </stackView> | 1847 | </stackView> |
1848 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="EEj-3C-9Td"> | 1848 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="EEj-3C-9Td"> |
1849 | - <rect key="frame" x="119" y="59" width="255" height="15"/> | 1849 | + <rect key="frame" x="119" y="58" width="255" height="14"/> |
1850 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="12"/> | 1850 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="12"/> |
1851 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> | 1851 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> |
1852 | <nil key="highlightedColor"/> | 1852 | <nil key="highlightedColor"/> |
... | @@ -1910,16 +1910,16 @@ | ... | @@ -1910,16 +1910,16 @@ |
1910 | <rect key="frame" x="10" y="0.0" width="394" height="100"/> | 1910 | <rect key="frame" x="10" y="0.0" width="394" height="100"/> |
1911 | <subviews> | 1911 | <subviews> |
1912 | <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" spacing="2" translatesAutoresizingMaskIntoConstraints="NO" id="Pso-iJ-S9p"> | 1912 | <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" spacing="2" translatesAutoresizingMaskIntoConstraints="NO" id="Pso-iJ-S9p"> |
1913 | - <rect key="frame" x="20" y="30" width="254" height="40"/> | 1913 | + <rect key="frame" x="20" y="31" width="254" height="38"/> |
1914 | <subviews> | 1914 | <subviews> |
1915 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Ενεργός κωδικός:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="T8m-z1-J6k"> | 1915 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Ενεργός κωδικός:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="T8m-z1-J6k"> |
1916 | - <rect key="frame" x="0.0" y="0.0" width="254" height="21"/> | 1916 | + <rect key="frame" x="0.0" y="0.0" width="254" height="20"/> |
1917 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="17"/> | 1917 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="17"/> |
1918 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> | 1918 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> |
1919 | <nil key="highlightedColor"/> | 1919 | <nil key="highlightedColor"/> |
1920 | </label> | 1920 | </label> |
1921 | <scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" translatesAutoresizingMaskIntoConstraints="NO" id="jfx-z1-VHT"> | 1921 | <scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" translatesAutoresizingMaskIntoConstraints="NO" id="jfx-z1-VHT"> |
1922 | - <rect key="frame" x="0.0" y="23" width="254" height="0.0"/> | 1922 | + <rect key="frame" x="0.0" y="22" width="254" height="0.0"/> |
1923 | <subviews> | 1923 | <subviews> |
1924 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="TPp-HH-CgA"> | 1924 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="TPp-HH-CgA"> |
1925 | <rect key="frame" x="0.0" y="0.0" width="254" height="0.0"/> | 1925 | <rect key="frame" x="0.0" y="0.0" width="254" height="0.0"/> |
... | @@ -1949,7 +1949,7 @@ | ... | @@ -1949,7 +1949,7 @@ |
1949 | <nil key="highlightedColor"/> | 1949 | <nil key="highlightedColor"/> |
1950 | </label> | 1950 | </label> |
1951 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Λήγει σε 4 ημέρες" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="zz2-r5-rnf"> | 1951 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Λήγει σε 4 ημέρες" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="zz2-r5-rnf"> |
1952 | - <rect key="frame" x="0.0" y="25" width="254" height="15"/> | 1952 | + <rect key="frame" x="0.0" y="24" width="254" height="14"/> |
1953 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="12"/> | 1953 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="12"/> |
1954 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> | 1954 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> |
1955 | <nil key="highlightedColor"/> | 1955 | <nil key="highlightedColor"/> |
... | @@ -2052,19 +2052,19 @@ | ... | @@ -2052,19 +2052,19 @@ |
2052 | </constraints> | 2052 | </constraints> |
2053 | </view> | 2053 | </view> |
2054 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="7Ng-4X-yjm"> | 2054 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="7Ng-4X-yjm"> |
2055 | - <rect key="frame" x="119" y="15" width="163.5" height="17"/> | 2055 | + <rect key="frame" x="119" y="15" width="163.5" height="20"/> |
2056 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="17"/> | 2056 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="17"/> |
2057 | <color key="textColor" red="0.2274509804" green="0.32156862749999998" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/> | 2057 | <color key="textColor" red="0.2274509804" green="0.32156862749999998" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/> |
2058 | <nil key="highlightedColor"/> | 2058 | <nil key="highlightedColor"/> |
2059 | </label> | 2059 | </label> |
2060 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="KJD-Db-B4t"> | 2060 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="KJD-Db-B4t"> |
2061 | - <rect key="frame" x="292.5" y="26.5" width="81.5" height="12"/> | 2061 | + <rect key="frame" x="292.5" y="25.5" width="81.5" height="14"/> |
2062 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="12"/> | 2062 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="12"/> |
2063 | <color key="textColor" red="0.3803921569" green="0.4431372549" blue="0.50588235290000005" alpha="1" colorSpace="calibratedRGB"/> | 2063 | <color key="textColor" red="0.3803921569" green="0.4431372549" blue="0.50588235290000005" alpha="1" colorSpace="calibratedRGB"/> |
2064 | <nil key="highlightedColor"/> | 2064 | <nil key="highlightedColor"/> |
2065 | </label> | 2065 | </label> |
2066 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="C5t-xz-oAO"> | 2066 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="C5t-xz-oAO"> |
2067 | - <rect key="frame" x="119" y="37.5" width="255" height="12"/> | 2067 | + <rect key="frame" x="119" y="35.5" width="255" height="14"/> |
2068 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="12"/> | 2068 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="12"/> |
2069 | <color key="textColor" red="0.3803921569" green="0.4431372549" blue="0.50588235290000005" alpha="1" colorSpace="calibratedRGB"/> | 2069 | <color key="textColor" red="0.3803921569" green="0.4431372549" blue="0.50588235290000005" alpha="1" colorSpace="calibratedRGB"/> |
2070 | <nil key="highlightedColor"/> | 2070 | <nil key="highlightedColor"/> |
... | @@ -2120,19 +2120,19 @@ | ... | @@ -2120,19 +2120,19 @@ |
2120 | <rect key="frame" x="0.0" y="0.0" width="414" height="44"/> | 2120 | <rect key="frame" x="0.0" y="0.0" width="414" height="44"/> |
2121 | <autoresizingMask key="autoresizingMask"/> | 2121 | <autoresizingMask key="autoresizingMask"/> |
2122 | <subviews> | 2122 | <subviews> |
2123 | - <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="AV7-t1-eK0"> | 2123 | + <view contentMode="scaleToFill" ambiguous="YES" translatesAutoresizingMaskIntoConstraints="NO" id="AV7-t1-eK0"> |
2124 | <rect key="frame" x="0.0" y="0.0" width="414" height="44"/> | 2124 | <rect key="frame" x="0.0" y="0.0" width="414" height="44"/> |
2125 | <subviews> | 2125 | <subviews> |
2126 | - <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="COSMOTE Επιβράβευση" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Z0E-V6-vKD"> | 2126 | + <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" text="COSMOTE Επιβράβευση" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Z0E-V6-vKD"> |
2127 | <rect key="frame" x="20" y="30" width="374" height="0.0"/> | 2127 | <rect key="frame" x="20" y="30" width="374" height="0.0"/> |
2128 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="21"/> | 2128 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="21"/> |
2129 | <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> | 2129 | <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> |
2130 | <nil key="highlightedColor"/> | 2130 | <nil key="highlightedColor"/> |
2131 | </label> | 2131 | </label> |
2132 | - <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="kge-nO-6ZA" userLabel="BadgesView"> | 2132 | + <view contentMode="scaleToFill" ambiguous="YES" translatesAutoresizingMaskIntoConstraints="NO" id="kge-nO-6ZA" userLabel="BadgesView"> |
2133 | <rect key="frame" x="0.0" y="44" width="414" height="0.0"/> | 2133 | <rect key="frame" x="0.0" y="44" width="414" height="0.0"/> |
2134 | <subviews> | 2134 | <subviews> |
2135 | - <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="wallet_badge_lines" translatesAutoresizingMaskIntoConstraints="NO" id="Cib-tj-hT7"> | 2135 | + <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" image="wallet_badge_lines" translatesAutoresizingMaskIntoConstraints="NO" id="Cib-tj-hT7"> |
2136 | <rect key="frame" x="7" y="50" width="400" height="80"/> | 2136 | <rect key="frame" x="7" y="50" width="400" height="80"/> |
2137 | <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> | 2137 | <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> |
2138 | <constraints> | 2138 | <constraints> |
... | @@ -2140,14 +2140,14 @@ | ... | @@ -2140,14 +2140,14 @@ |
2140 | <constraint firstAttribute="width" constant="400" id="aZp-jX-jNM"/> | 2140 | <constraint firstAttribute="width" constant="400" id="aZp-jX-jNM"/> |
2141 | </constraints> | 2141 | </constraints> |
2142 | </imageView> | 2142 | </imageView> |
2143 | - <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="UuC-Lf-eNr"> | 2143 | + <view contentMode="scaleToFill" ambiguous="YES" translatesAutoresizingMaskIntoConstraints="NO" id="UuC-Lf-eNr"> |
2144 | <rect key="frame" x="162" y="0.0" width="90" height="90"/> | 2144 | <rect key="frame" x="162" y="0.0" width="90" height="90"/> |
2145 | <subviews> | 2145 | <subviews> |
2146 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="wallet_dfy_earn" translatesAutoresizingMaskIntoConstraints="NO" id="myJ-Di-R2M"> | 2146 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="wallet_dfy_earn" translatesAutoresizingMaskIntoConstraints="NO" id="myJ-Di-R2M"> |
2147 | <rect key="frame" x="0.0" y="0.0" width="90" height="90"/> | 2147 | <rect key="frame" x="0.0" y="0.0" width="90" height="90"/> |
2148 | </imageView> | 2148 | </imageView> |
2149 | - <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="0,00€" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="AHT-NP-UcH"> | 2149 | + <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" text="0,00€" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="AHT-NP-UcH"> |
2150 | - <rect key="frame" x="5" y="54" width="80" height="14"/> | 2150 | + <rect key="frame" x="5" y="51.666666666666671" width="80" height="16.333333333333329"/> |
2151 | <fontDescription key="fontDescription" name="PFSquareSansPro-ExtraBlack" family="PF Square Sans Pro" pointSize="14"/> | 2151 | <fontDescription key="fontDescription" name="PFSquareSansPro-ExtraBlack" family="PF Square Sans Pro" pointSize="14"/> |
2152 | <color key="textColor" red="0.25490196079999999" green="0.33333333329999998" blue="0.3921568627" alpha="1" colorSpace="calibratedRGB"/> | 2152 | <color key="textColor" red="0.25490196079999999" green="0.33333333329999998" blue="0.3921568627" alpha="1" colorSpace="calibratedRGB"/> |
2153 | <nil key="highlightedColor"/> | 2153 | <nil key="highlightedColor"/> |
... | @@ -2166,14 +2166,14 @@ | ... | @@ -2166,14 +2166,14 @@ |
2166 | <constraint firstAttribute="trailing" secondItem="myJ-Di-R2M" secondAttribute="trailing" id="yP0-4e-mRo"/> | 2166 | <constraint firstAttribute="trailing" secondItem="myJ-Di-R2M" secondAttribute="trailing" id="yP0-4e-mRo"/> |
2167 | </constraints> | 2167 | </constraints> |
2168 | </view> | 2168 | </view> |
2169 | - <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="af5-Pz-rum"> | 2169 | + <view contentMode="scaleToFill" ambiguous="YES" translatesAutoresizingMaskIntoConstraints="NO" id="af5-Pz-rum"> |
2170 | - <rect key="frame" x="64.5" y="100" width="75" height="75"/> | 2170 | + <rect key="frame" x="64.666666666666686" y="100" width="75" height="75"/> |
2171 | <subviews> | 2171 | <subviews> |
2172 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="wallet_dfy_earn" translatesAutoresizingMaskIntoConstraints="NO" id="K43-m1-wTl"> | 2172 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="wallet_dfy_earn" translatesAutoresizingMaskIntoConstraints="NO" id="K43-m1-wTl"> |
2173 | <rect key="frame" x="0.0" y="0.0" width="75" height="75"/> | 2173 | <rect key="frame" x="0.0" y="0.0" width="75" height="75"/> |
2174 | </imageView> | 2174 | </imageView> |
2175 | - <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="0,00€" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="2Ku-5y-o0b"> | 2175 | + <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" text="0,00€" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="2Ku-5y-o0b"> |
2176 | - <rect key="frame" x="5" y="46" width="65" height="11"/> | 2176 | + <rect key="frame" x="5" y="44" width="65" height="13"/> |
2177 | <fontDescription key="fontDescription" name="PFSquareSansPro-ExtraBlack" family="PF Square Sans Pro" pointSize="11"/> | 2177 | <fontDescription key="fontDescription" name="PFSquareSansPro-ExtraBlack" family="PF Square Sans Pro" pointSize="11"/> |
2178 | <color key="textColor" red="0.25490196079999999" green="0.33333333329999998" blue="0.3921568627" alpha="1" colorSpace="calibratedRGB"/> | 2178 | <color key="textColor" red="0.25490196079999999" green="0.33333333329999998" blue="0.3921568627" alpha="1" colorSpace="calibratedRGB"/> |
2179 | <nil key="highlightedColor"/> | 2179 | <nil key="highlightedColor"/> |
... | @@ -2207,14 +2207,14 @@ | ... | @@ -2207,14 +2207,14 @@ |
2207 | <constraint firstAttribute="height" constant="75" id="sgx-Z2-YsH"/> | 2207 | <constraint firstAttribute="height" constant="75" id="sgx-Z2-YsH"/> |
2208 | </constraints> | 2208 | </constraints> |
2209 | </view> | 2209 | </view> |
2210 | - <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Qge-34-vJ3"> | 2210 | + <view contentMode="scaleToFill" ambiguous="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Qge-34-vJ3"> |
2211 | - <rect key="frame" x="169.5" y="120" width="75" height="73"/> | 2211 | + <rect key="frame" x="169.66666666666666" y="120" width="75" height="73"/> |
2212 | <subviews> | 2212 | <subviews> |
2213 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="wallet_dfy_earn" translatesAutoresizingMaskIntoConstraints="NO" id="gGn-2u-akB"> | 2213 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="wallet_dfy_earn" translatesAutoresizingMaskIntoConstraints="NO" id="gGn-2u-akB"> |
2214 | <rect key="frame" x="0.0" y="0.0" width="75" height="73"/> | 2214 | <rect key="frame" x="0.0" y="0.0" width="75" height="73"/> |
2215 | </imageView> | 2215 | </imageView> |
2216 | - <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="0,00€" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="8JV-5a-Jar"> | 2216 | + <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" text="0,00€" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="8JV-5a-Jar"> |
2217 | - <rect key="frame" x="5" y="44" width="65" height="11"/> | 2217 | + <rect key="frame" x="5" y="42" width="65" height="13"/> |
2218 | <fontDescription key="fontDescription" name="PFSquareSansPro-ExtraBlack" family="PF Square Sans Pro" pointSize="11"/> | 2218 | <fontDescription key="fontDescription" name="PFSquareSansPro-ExtraBlack" family="PF Square Sans Pro" pointSize="11"/> |
2219 | <color key="textColor" red="0.25490196079999999" green="0.33333333329999998" blue="0.3921568627" alpha="1" colorSpace="calibratedRGB"/> | 2219 | <color key="textColor" red="0.25490196079999999" green="0.33333333329999998" blue="0.3921568627" alpha="1" colorSpace="calibratedRGB"/> |
2220 | <nil key="highlightedColor"/> | 2220 | <nil key="highlightedColor"/> |
... | @@ -2248,14 +2248,14 @@ | ... | @@ -2248,14 +2248,14 @@ |
2248 | <constraint firstAttribute="trailing" secondItem="6UC-iU-ey4" secondAttribute="trailing" id="cB7-Ks-NGG"/> | 2248 | <constraint firstAttribute="trailing" secondItem="6UC-iU-ey4" secondAttribute="trailing" id="cB7-Ks-NGG"/> |
2249 | </constraints> | 2249 | </constraints> |
2250 | </view> | 2250 | </view> |
2251 | - <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="8V2-Ru-8jC"> | 2251 | + <view contentMode="scaleToFill" ambiguous="YES" translatesAutoresizingMaskIntoConstraints="NO" id="8V2-Ru-8jC"> |
2252 | - <rect key="frame" x="274.5" y="100" width="75" height="75"/> | 2252 | + <rect key="frame" x="274.66666666666669" y="100" width="75" height="75"/> |
2253 | <subviews> | 2253 | <subviews> |
2254 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="wallet_dfy_earn" translatesAutoresizingMaskIntoConstraints="NO" id="oXU-NL-imE"> | 2254 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="wallet_dfy_earn" translatesAutoresizingMaskIntoConstraints="NO" id="oXU-NL-imE"> |
2255 | <rect key="frame" x="0.0" y="0.0" width="75" height="75"/> | 2255 | <rect key="frame" x="0.0" y="0.0" width="75" height="75"/> |
2256 | </imageView> | 2256 | </imageView> |
2257 | - <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="0,00€" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="wxE-g9-jaK"> | 2257 | + <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" text="0,00€" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="wxE-g9-jaK"> |
2258 | - <rect key="frame" x="5" y="46" width="65" height="11"/> | 2258 | + <rect key="frame" x="5" y="44" width="65" height="13"/> |
2259 | <fontDescription key="fontDescription" name="PFSquareSansPro-ExtraBlack" family="PF Square Sans Pro" pointSize="11"/> | 2259 | <fontDescription key="fontDescription" name="PFSquareSansPro-ExtraBlack" family="PF Square Sans Pro" pointSize="11"/> |
2260 | <color key="textColor" red="0.25490196079999999" green="0.33333333329999998" blue="0.3921568627" alpha="1" colorSpace="calibratedRGB"/> | 2260 | <color key="textColor" red="0.25490196079999999" green="0.33333333329999998" blue="0.3921568627" alpha="1" colorSpace="calibratedRGB"/> |
2261 | <nil key="highlightedColor"/> | 2261 | <nil key="highlightedColor"/> |
... | @@ -3322,19 +3322,19 @@ | ... | @@ -3322,19 +3322,19 @@ |
3322 | </constraints> | 3322 | </constraints> |
3323 | </imageView> | 3323 | </imageView> |
3324 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Πάρε δωρεάν μηνιαία πακέτα με πάνες στα supermarket Σκλαβενίτης!" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Xz4-EE-EzJ"> | 3324 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Πάρε δωρεάν μηνιαία πακέτα με πάνες στα supermarket Σκλαβενίτης!" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Xz4-EE-EzJ"> |
3325 | - <rect key="frame" x="20" y="230" width="374" height="39.5"/> | 3325 | + <rect key="frame" x="20" y="230" width="374" height="40"/> |
3326 | <fontDescription key="fontDescription" name="BTCosmo-Bold" family="BTCosmo" pointSize="17"/> | 3326 | <fontDescription key="fontDescription" name="BTCosmo-Bold" family="BTCosmo" pointSize="17"/> |
3327 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> | 3327 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> |
3328 | <nil key="highlightedColor"/> | 3328 | <nil key="highlightedColor"/> |
3329 | </label> | 3329 | </label> |
3330 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Χρησιμοποίησε τον παρακάτω κωδικό και πάρε δωρεάν πακέτο πάνες Pampers αποκλειστικά στα Supermarket Σκλαβενίτης" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="mri-Wl-spg"> | 3330 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Χρησιμοποίησε τον παρακάτω κωδικό και πάρε δωρεάν πακέτο πάνες Pampers αποκλειστικά στα Supermarket Σκλαβενίτης" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="mri-Wl-spg"> |
3331 | - <rect key="frame" x="20" y="284.5" width="374" height="59.5"/> | 3331 | + <rect key="frame" x="20" y="285" width="374" height="56"/> |
3332 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="16"/> | 3332 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="16"/> |
3333 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> | 3333 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> |
3334 | <nil key="highlightedColor"/> | 3334 | <nil key="highlightedColor"/> |
3335 | </label> | 3335 | </label> |
3336 | <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" editable="NO" textAlignment="center" selectable="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tzW-b9-Rbx" customClass="UnselectableTappableTextView" customModule="SwiftWarplyFramework"> | 3336 | <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" editable="NO" textAlignment="center" selectable="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tzW-b9-Rbx" customClass="UnselectableTappableTextView" customModule="SwiftWarplyFramework"> |
3337 | - <rect key="frame" x="20" y="354" width="374" height="0.0"/> | 3337 | + <rect key="frame" x="20" y="351" width="374" height="0.0"/> |
3338 | <color key="backgroundColor" systemColor="systemBackgroundColor"/> | 3338 | <color key="backgroundColor" systemColor="systemBackgroundColor"/> |
3339 | <constraints> | 3339 | <constraints> |
3340 | <constraint firstAttribute="height" id="7ch-2U-9oE"/> | 3340 | <constraint firstAttribute="height" id="7ch-2U-9oE"/> |
... | @@ -3344,16 +3344,16 @@ | ... | @@ -3344,16 +3344,16 @@ |
3344 | <textInputTraits key="textInputTraits" autocapitalizationType="sentences"/> | 3344 | <textInputTraits key="textInputTraits" autocapitalizationType="sentences"/> |
3345 | </textView> | 3345 | </textView> |
3346 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Κωδικός Κουπονιού" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Sg1-QU-FY1"> | 3346 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Κωδικός Κουπονιού" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Sg1-QU-FY1"> |
3347 | - <rect key="frame" x="20" y="389" width="374" height="21"/> | 3347 | + <rect key="frame" x="20" y="386" width="374" height="20"/> |
3348 | <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="17"/> | 3348 | <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="17"/> |
3349 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> | 3349 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> |
3350 | <nil key="highlightedColor"/> | 3350 | <nil key="highlightedColor"/> |
3351 | </label> | 3351 | </label> |
3352 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Zdf-1r-FdJ" userLabel="Coupon View"> | 3352 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Zdf-1r-FdJ" userLabel="Coupon View"> |
3353 | - <rect key="frame" x="155.5" y="420" width="103" height="55"/> | 3353 | + <rect key="frame" x="20" y="426" width="374" height="55"/> |
3354 | <subviews> | 3354 | <subviews> |
3355 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="BJS-kk-CBZ" customClass="CopyableLabel" customModule="SwiftWarplyFramework" customModuleProvider="target"> | 3355 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="BJS-kk-CBZ" customClass="CopyableLabel" customModule="SwiftWarplyFramework" customModuleProvider="target"> |
3356 | - <rect key="frame" x="20" y="12.5" width="63" height="30"/> | 3356 | + <rect key="frame" x="20" y="13.5" width="334" height="28"/> |
3357 | <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="24"/> | 3357 | <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="24"/> |
3358 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> | 3358 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> |
3359 | <nil key="highlightedColor"/> | 3359 | <nil key="highlightedColor"/> |
... | @@ -3368,20 +3368,20 @@ | ... | @@ -3368,20 +3368,20 @@ |
3368 | </constraints> | 3368 | </constraints> |
3369 | </view> | 3369 | </view> |
3370 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="jrM-7n-fSw" userLabel="Border View"> | 3370 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="jrM-7n-fSw" userLabel="Border View"> |
3371 | - <rect key="frame" x="20" y="495" width="374" height="1"/> | 3371 | + <rect key="frame" x="20" y="501" width="374" height="1"/> |
3372 | <color key="backgroundColor" red="0.90196078431372551" green="0.90196078431372551" blue="0.90196078431372551" alpha="1" colorSpace="calibratedRGB"/> | 3372 | <color key="backgroundColor" red="0.90196078431372551" green="0.90196078431372551" blue="0.90196078431372551" alpha="1" colorSpace="calibratedRGB"/> |
3373 | <constraints> | 3373 | <constraints> |
3374 | <constraint firstAttribute="height" constant="1" id="eF3-7T-hMu"/> | 3374 | <constraint firstAttribute="height" constant="1" id="eF3-7T-hMu"/> |
3375 | </constraints> | 3375 | </constraints> |
3376 | </view> | 3376 | </view> |
3377 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="huh-zh-82C"> | 3377 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="huh-zh-82C"> |
3378 | - <rect key="frame" x="30" y="506" width="354" height="110"/> | 3378 | + <rect key="frame" x="30" y="512" width="354" height="110"/> |
3379 | <constraints> | 3379 | <constraints> |
3380 | <constraint firstAttribute="height" constant="110" id="LJq-uV-eb8"/> | 3380 | <constraint firstAttribute="height" constant="110" id="LJq-uV-eb8"/> |
3381 | </constraints> | 3381 | </constraints> |
3382 | </imageView> | 3382 | </imageView> |
3383 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="123456789101112" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="EKv-Mx-6Yv"> | 3383 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="123456789101112" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="EKv-Mx-6Yv"> |
3384 | - <rect key="frame" x="20" y="626" width="374" height="26.5"/> | 3384 | + <rect key="frame" x="20" y="632" width="374" height="26.5"/> |
3385 | <constraints> | 3385 | <constraints> |
3386 | <constraint firstAttribute="height" constant="26.5" id="LfJ-bC-nLk"/> | 3386 | <constraint firstAttribute="height" constant="26.5" id="LfJ-bC-nLk"/> |
3387 | </constraints> | 3387 | </constraints> |
... | @@ -3390,14 +3390,14 @@ | ... | @@ -3390,14 +3390,14 @@ |
3390 | <nil key="highlightedColor"/> | 3390 | <nil key="highlightedColor"/> |
3391 | </label> | 3391 | </label> |
3392 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="6rV-2m-QMZ" userLabel="Border 2 View"> | 3392 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="6rV-2m-QMZ" userLabel="Border 2 View"> |
3393 | - <rect key="frame" x="20" y="667.5" width="374" height="1"/> | 3393 | + <rect key="frame" x="20" y="673.5" width="374" height="1"/> |
3394 | <color key="backgroundColor" red="0.90196078430000004" green="0.90196078430000004" blue="0.90196078430000004" alpha="1" colorSpace="calibratedRGB"/> | 3394 | <color key="backgroundColor" red="0.90196078430000004" green="0.90196078430000004" blue="0.90196078430000004" alpha="1" colorSpace="calibratedRGB"/> |
3395 | <constraints> | 3395 | <constraints> |
3396 | <constraint firstAttribute="height" constant="1" id="DVl-3B-zqo"/> | 3396 | <constraint firstAttribute="height" constant="1" id="DVl-3B-zqo"/> |
3397 | </constraints> | 3397 | </constraints> |
3398 | </view> | 3398 | </view> |
3399 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Zw5-Wj-WD5"> | 3399 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Zw5-Wj-WD5"> |
3400 | - <rect key="frame" x="103.5" y="678.5" width="207" height="50"/> | 3400 | + <rect key="frame" x="103.5" y="684.5" width="207" height="50"/> |
3401 | <constraints> | 3401 | <constraints> |
3402 | <constraint firstAttribute="height" constant="50" id="ZSP-NX-0a7"/> | 3402 | <constraint firstAttribute="height" constant="50" id="ZSP-NX-0a7"/> |
3403 | </constraints> | 3403 | </constraints> |
... | @@ -3412,13 +3412,13 @@ | ... | @@ -3412,13 +3412,13 @@ |
3412 | </connections> | 3412 | </connections> |
3413 | </button> | 3413 | </button> |
3414 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Το κουπόνι ισχύει έως 05/12/2022" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="UhC-Lj-tfN"> | 3414 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Το κουπόνι ισχύει έως 05/12/2022" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="UhC-Lj-tfN"> |
3415 | - <rect key="frame" x="20" y="758.5" width="374" height="16"/> | 3415 | + <rect key="frame" x="20" y="764.5" width="374" height="19"/> |
3416 | - <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="13"/> | 3416 | + <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="16"/> |
3417 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> | 3417 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> |
3418 | <nil key="highlightedColor"/> | 3418 | <nil key="highlightedColor"/> |
3419 | </label> | 3419 | </label> |
3420 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="8cR-Rc-YMJ"> | 3420 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="8cR-Rc-YMJ"> |
3421 | - <rect key="frame" x="167.5" y="794.5" width="79" height="50"/> | 3421 | + <rect key="frame" x="170.5" y="803.5" width="73" height="50"/> |
3422 | <constraints> | 3422 | <constraints> |
3423 | <constraint firstAttribute="height" constant="50" id="ccg-NP-FIH"/> | 3423 | <constraint firstAttribute="height" constant="50" id="ccg-NP-FIH"/> |
3424 | </constraints> | 3424 | </constraints> |
... | @@ -3432,7 +3432,7 @@ | ... | @@ -3432,7 +3432,7 @@ |
3432 | </connections> | 3432 | </connections> |
3433 | </button> | 3433 | </button> |
3434 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="W5f-1T-iW6"> | 3434 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="W5f-1T-iW6"> |
3435 | - <rect key="frame" x="128" y="854.5" width="158" height="50"/> | 3435 | + <rect key="frame" x="133.5" y="863.5" width="147" height="50"/> |
3436 | <constraints> | 3436 | <constraints> |
3437 | <constraint firstAttribute="height" constant="50" id="3pq-y5-f66"/> | 3437 | <constraint firstAttribute="height" constant="50" id="3pq-y5-f66"/> |
3438 | </constraints> | 3438 | </constraints> |
... | @@ -3446,7 +3446,7 @@ | ... | @@ -3446,7 +3446,7 @@ |
3446 | </connections> | 3446 | </connections> |
3447 | </button> | 3447 | </button> |
3448 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="8UD-WL-JB7"> | 3448 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="8UD-WL-JB7"> |
3449 | - <rect key="frame" x="103.5" y="924.5" width="207" height="40"/> | 3449 | + <rect key="frame" x="103.5" y="933.5" width="207" height="40"/> |
3450 | <constraints> | 3450 | <constraints> |
3451 | <constraint firstAttribute="height" constant="40" id="xdq-YS-AL4"/> | 3451 | <constraint firstAttribute="height" constant="40" id="xdq-YS-AL4"/> |
3452 | </constraints> | 3452 | </constraints> |
... | @@ -3461,7 +3461,7 @@ | ... | @@ -3461,7 +3461,7 @@ |
3461 | </connections> | 3461 | </connections> |
3462 | </button> | 3462 | </button> |
3463 | <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" editable="NO" textAlignment="center" selectable="NO" translatesAutoresizingMaskIntoConstraints="NO" id="xjX-HZ-MpD" customClass="UnselectableTappableTextView" customModule="SwiftWarplyFramework"> | 3463 | <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" editable="NO" textAlignment="center" selectable="NO" translatesAutoresizingMaskIntoConstraints="NO" id="xjX-HZ-MpD" customClass="UnselectableTappableTextView" customModule="SwiftWarplyFramework"> |
3464 | - <rect key="frame" x="20" y="964.5" width="374" height="0.0"/> | 3464 | + <rect key="frame" x="20" y="973.5" width="374" height="0.0"/> |
3465 | <color key="backgroundColor" systemColor="systemBackgroundColor"/> | 3465 | <color key="backgroundColor" systemColor="systemBackgroundColor"/> |
3466 | <constraints> | 3466 | <constraints> |
3467 | <constraint firstAttribute="height" id="3GU-tg-S3t"/> | 3467 | <constraint firstAttribute="height" id="3GU-tg-S3t"/> |
... | @@ -3489,7 +3489,7 @@ | ... | @@ -3489,7 +3489,7 @@ |
3489 | <constraint firstItem="huh-zh-82C" firstAttribute="top" secondItem="jrM-7n-fSw" secondAttribute="bottom" constant="10" id="GQF-H5-SZp"/> | 3489 | <constraint firstItem="huh-zh-82C" firstAttribute="top" secondItem="jrM-7n-fSw" secondAttribute="bottom" constant="10" id="GQF-H5-SZp"/> |
3490 | <constraint firstItem="iiM-5P-m5s" firstAttribute="top" secondItem="1ec-eH-fkX" secondAttribute="top" id="H9I-TB-xig"/> | 3490 | <constraint firstItem="iiM-5P-m5s" firstAttribute="top" secondItem="1ec-eH-fkX" secondAttribute="top" id="H9I-TB-xig"/> |
3491 | <constraint firstItem="8cR-Rc-YMJ" firstAttribute="top" secondItem="UhC-Lj-tfN" secondAttribute="bottom" constant="20" id="I87-km-KEb"/> | 3491 | <constraint firstItem="8cR-Rc-YMJ" firstAttribute="top" secondItem="UhC-Lj-tfN" secondAttribute="bottom" constant="20" id="I87-km-KEb"/> |
3492 | - <constraint firstItem="Zdf-1r-FdJ" firstAttribute="top" secondItem="Sg1-QU-FY1" secondAttribute="bottom" constant="10" id="KZi-Jl-Yyz"/> | 3492 | + <constraint firstItem="Zdf-1r-FdJ" firstAttribute="top" secondItem="Sg1-QU-FY1" secondAttribute="bottom" constant="20" id="KZi-Jl-Yyz"/> |
3493 | <constraint firstItem="UhC-Lj-tfN" firstAttribute="leading" secondItem="1ec-eH-fkX" secondAttribute="leading" constant="20" id="MSg-iF-tt9"/> | 3493 | <constraint firstItem="UhC-Lj-tfN" firstAttribute="leading" secondItem="1ec-eH-fkX" secondAttribute="leading" constant="20" id="MSg-iF-tt9"/> |
3494 | <constraint firstAttribute="trailing" secondItem="6rV-2m-QMZ" secondAttribute="trailing" constant="20" id="NGe-PV-pQl"/> | 3494 | <constraint firstAttribute="trailing" secondItem="6rV-2m-QMZ" secondAttribute="trailing" constant="20" id="NGe-PV-pQl"/> |
3495 | <constraint firstAttribute="trailing" secondItem="mri-Wl-spg" secondAttribute="trailing" constant="20" id="NmE-Pu-v1S"/> | 3495 | <constraint firstAttribute="trailing" secondItem="mri-Wl-spg" secondAttribute="trailing" constant="20" id="NmE-Pu-v1S"/> |
... | @@ -3502,9 +3502,9 @@ | ... | @@ -3502,9 +3502,9 @@ |
3502 | <constraint firstItem="Sg1-QU-FY1" firstAttribute="top" secondItem="tzW-b9-Rbx" secondAttribute="bottom" constant="35" id="WWh-BA-7qP"/> | 3502 | <constraint firstItem="Sg1-QU-FY1" firstAttribute="top" secondItem="tzW-b9-Rbx" secondAttribute="bottom" constant="35" id="WWh-BA-7qP"/> |
3503 | <constraint firstItem="xjX-HZ-MpD" firstAttribute="top" secondItem="8UD-WL-JB7" secondAttribute="bottom" id="XFI-ij-KkC"/> | 3503 | <constraint firstItem="xjX-HZ-MpD" firstAttribute="top" secondItem="8UD-WL-JB7" secondAttribute="bottom" id="XFI-ij-KkC"/> |
3504 | <constraint firstItem="mri-Wl-spg" firstAttribute="leading" secondItem="1ec-eH-fkX" secondAttribute="leading" constant="20" id="YLo-Lg-Lda"/> | 3504 | <constraint firstItem="mri-Wl-spg" firstAttribute="leading" secondItem="1ec-eH-fkX" secondAttribute="leading" constant="20" id="YLo-Lg-Lda"/> |
3505 | - <constraint firstItem="Zdf-1r-FdJ" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="1ec-eH-fkX" secondAttribute="leading" constant="25" id="ZQd-cZ-JwO"/> | 3505 | + <constraint firstItem="Zdf-1r-FdJ" firstAttribute="leading" secondItem="1ec-eH-fkX" secondAttribute="leading" constant="20" id="ZQd-cZ-JwO"/> |
3506 | <constraint firstItem="6rV-2m-QMZ" firstAttribute="leading" secondItem="1ec-eH-fkX" secondAttribute="leading" constant="20" id="bcQ-yl-h1d"/> | 3506 | <constraint firstItem="6rV-2m-QMZ" firstAttribute="leading" secondItem="1ec-eH-fkX" secondAttribute="leading" constant="20" id="bcQ-yl-h1d"/> |
3507 | - <constraint firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="Zdf-1r-FdJ" secondAttribute="trailing" constant="25" id="c0p-Op-6VI"/> | 3507 | + <constraint firstAttribute="trailing" secondItem="Zdf-1r-FdJ" secondAttribute="trailing" constant="20" id="c0p-Op-6VI"/> |
3508 | <constraint firstItem="iiM-5P-m5s" firstAttribute="leading" secondItem="1ec-eH-fkX" secondAttribute="leading" id="e6i-V3-Csq"/> | 3508 | <constraint firstItem="iiM-5P-m5s" firstAttribute="leading" secondItem="1ec-eH-fkX" secondAttribute="leading" id="e6i-V3-Csq"/> |
3509 | <constraint firstItem="8UD-WL-JB7" firstAttribute="centerX" secondItem="1ec-eH-fkX" secondAttribute="centerX" id="eFM-ex-Dye"/> | 3509 | <constraint firstItem="8UD-WL-JB7" firstAttribute="centerX" secondItem="1ec-eH-fkX" secondAttribute="centerX" id="eFM-ex-Dye"/> |
3510 | <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="8UD-WL-JB7" secondAttribute="bottom" constant="30" id="emI-WB-sXK"/> | 3510 | <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="8UD-WL-JB7" secondAttribute="bottom" constant="30" id="emI-WB-sXK"/> |
... | @@ -4205,21 +4205,21 @@ | ... | @@ -4205,21 +4205,21 @@ |
4205 | <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="15" estimatedSectionFooterHeight="-1" contentViewInsetsToSafeArea="NO" id="qD1-U4-LYx"> | 4205 | <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="15" estimatedSectionFooterHeight="-1" contentViewInsetsToSafeArea="NO" id="qD1-U4-LYx"> |
4206 | <rect key="frame" x="0.0" y="0.0" width="414" height="896"/> | 4206 | <rect key="frame" x="0.0" y="0.0" width="414" height="896"/> |
4207 | <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> | 4207 | <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
4208 | - <color key="backgroundColor" red="0.94901960784313721" green="0.94901960784313721" blue="0.95294117647058818" alpha="1" colorSpace="custom" customColorSpace="sRGB"/> | 4208 | + <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> |
4209 | - <color key="sectionIndexBackgroundColor" red="0.94901960784313721" green="0.94901960784313721" blue="0.95294117647058818" alpha="1" colorSpace="custom" customColorSpace="sRGB"/> | 4209 | + <color key="sectionIndexBackgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> |
4210 | <prototypes> | 4210 | <prototypes> |
4211 | <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" indentationWidth="10" reuseIdentifier="AnalysisItemViewCell" id="mwO-Y9-Whd" customClass="AnalysisItemViewCell" customModule="SwiftWarplyFramework" customModuleProvider="target"> | 4211 | <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" indentationWidth="10" reuseIdentifier="AnalysisItemViewCell" id="mwO-Y9-Whd" customClass="AnalysisItemViewCell" customModule="SwiftWarplyFramework" customModuleProvider="target"> |
4212 | - <rect key="frame" x="0.0" y="55.5" width="414" height="94.5"/> | 4212 | + <rect key="frame" x="0.0" y="55.5" width="414" height="92.5"/> |
4213 | <autoresizingMask key="autoresizingMask"/> | 4213 | <autoresizingMask key="autoresizingMask"/> |
4214 | <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="mwO-Y9-Whd" id="4Lb-Ez-2D5"> | 4214 | <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="mwO-Y9-Whd" id="4Lb-Ez-2D5"> |
4215 | - <rect key="frame" x="0.0" y="0.0" width="414" height="94.5"/> | 4215 | + <rect key="frame" x="0.0" y="0.0" width="414" height="92.5"/> |
4216 | <autoresizingMask key="autoresizingMask"/> | 4216 | <autoresizingMask key="autoresizingMask"/> |
4217 | <subviews> | 4217 | <subviews> |
4218 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="iZo-vI-ghy" userLabel="Border View"> | 4218 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="iZo-vI-ghy" userLabel="Border View"> |
4219 | - <rect key="frame" x="10" y="0.0" width="394" height="94.5"/> | 4219 | + <rect key="frame" x="10" y="0.0" width="394" height="92.5"/> |
4220 | <subviews> | 4220 | <subviews> |
4221 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="FHL-6G-GnR" userLabel="Inner View"> | 4221 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="FHL-6G-GnR" userLabel="Inner View"> |
4222 | - <rect key="frame" x="1" y="0.0" width="392" height="94.5"/> | 4222 | + <rect key="frame" x="1" y="0.0" width="392" height="92.5"/> |
4223 | <subviews> | 4223 | <subviews> |
4224 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="05/05/2022" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ZqN-UN-x9M" userLabel="Date"> | 4224 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="05/05/2022" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ZqN-UN-x9M" userLabel="Date"> |
4225 | <rect key="frame" x="20" y="25" width="352" height="16"/> | 4225 | <rect key="frame" x="20" y="25" width="352" height="16"/> |
... | @@ -4231,29 +4231,29 @@ | ... | @@ -4231,29 +4231,29 @@ |
4231 | <nil key="highlightedColor"/> | 4231 | <nil key="highlightedColor"/> |
4232 | </label> | 4232 | </label> |
4233 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="CWb-0c-TXi"> | 4233 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="CWb-0c-TXi"> |
4234 | - <rect key="frame" x="20" y="51" width="352" height="43.5"/> | 4234 | + <rect key="frame" x="20" y="51" width="352" height="41.5"/> |
4235 | <subviews> | 4235 | <subviews> |
4236 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="VHu-ds-i1E"> | 4236 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="VHu-ds-i1E"> |
4237 | - <rect key="frame" x="0.0" y="8" width="28" height="28"/> | 4237 | + <rect key="frame" x="0.0" y="7" width="28" height="28"/> |
4238 | <constraints> | 4238 | <constraints> |
4239 | <constraint firstAttribute="width" constant="28" id="0eN-xR-ec6"/> | 4239 | <constraint firstAttribute="width" constant="28" id="0eN-xR-ec6"/> |
4240 | <constraint firstAttribute="height" constant="28" id="OZS-QM-eof"/> | 4240 | <constraint firstAttribute="height" constant="28" id="OZS-QM-eof"/> |
4241 | </constraints> | 4241 | </constraints> |
4242 | </imageView> | 4242 | </imageView> |
4243 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="248" verticalHuggingPriority="251" text="BOX" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="9Ag-Sp-uXt" userLabel="Title"> | 4243 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="248" verticalHuggingPriority="251" text="BOX" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="9Ag-Sp-uXt" userLabel="Title"> |
4244 | - <rect key="frame" x="38" y="0.0" width="251.5" height="21"/> | 4244 | + <rect key="frame" x="38" y="0.0" width="261" height="20"/> |
4245 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="17"/> | 4245 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="17"/> |
4246 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> | 4246 | <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> |
4247 | <nil key="highlightedColor"/> | 4247 | <nil key="highlightedColor"/> |
4248 | </label> | 4248 | </label> |
4249 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="248" verticalHuggingPriority="251" text="Έκπτωτικό κουπόνι" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="4bA-Ab-3q1" userLabel="Subtitle"> | 4249 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="248" verticalHuggingPriority="251" text="Έκπτωτικό κουπόνι" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="4bA-Ab-3q1" userLabel="Subtitle"> |
4250 | - <rect key="frame" x="38" y="26" width="251.5" height="17.5"/> | 4250 | + <rect key="frame" x="38" y="25" width="261" height="16.5"/> |
4251 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="14"/> | 4251 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="14"/> |
4252 | - <color key="textColor" red="0.61568627450980395" green="0.61568627450980395" blue="0.61176470588235299" alpha="1" colorSpace="calibratedRGB"/> | 4252 | + <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> |
4253 | <nil key="highlightedColor"/> | 4253 | <nil key="highlightedColor"/> |
4254 | </label> | 4254 | </label> |
4255 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" horizontalCompressionResistancePriority="751" text="4,00€" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ZGs-RN-c7E" userLabel="Price"> | 4255 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" horizontalCompressionResistancePriority="751" text="4,00€" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ZGs-RN-c7E" userLabel="Price"> |
4256 | - <rect key="frame" x="299.5" y="12" width="52.5" height="20"/> | 4256 | + <rect key="frame" x="309" y="11" width="43" height="20"/> |
4257 | <constraints> | 4257 | <constraints> |
4258 | <constraint firstAttribute="height" constant="20" id="VS4-Dn-eBF"/> | 4258 | <constraint firstAttribute="height" constant="20" id="VS4-Dn-eBF"/> |
4259 | </constraints> | 4259 | </constraints> |
... | @@ -4294,7 +4294,7 @@ | ... | @@ -4294,7 +4294,7 @@ |
4294 | </constraints> | 4294 | </constraints> |
4295 | </view> | 4295 | </view> |
4296 | </subviews> | 4296 | </subviews> |
4297 | - <color key="backgroundColor" red="0.90196078431372551" green="0.90196078431372551" blue="0.90196078431372551" alpha="1" colorSpace="calibratedRGB"/> | 4297 | + <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> |
4298 | <constraints> | 4298 | <constraints> |
4299 | <constraint firstItem="FHL-6G-GnR" firstAttribute="leading" secondItem="iZo-vI-ghy" secondAttribute="leading" constant="1" id="5jF-KV-sqb"/> | 4299 | <constraint firstItem="FHL-6G-GnR" firstAttribute="leading" secondItem="iZo-vI-ghy" secondAttribute="leading" constant="1" id="5jF-KV-sqb"/> |
4300 | <constraint firstAttribute="trailing" secondItem="FHL-6G-GnR" secondAttribute="trailing" constant="1" id="Xsf-bl-A5d"/> | 4300 | <constraint firstAttribute="trailing" secondItem="FHL-6G-GnR" secondAttribute="trailing" constant="1" id="Xsf-bl-A5d"/> |
... | @@ -4321,7 +4321,7 @@ | ... | @@ -4321,7 +4321,7 @@ |
4321 | </connections> | 4321 | </connections> |
4322 | </tableViewCell> | 4322 | </tableViewCell> |
4323 | <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="AnalysisHeaderViewCell" id="5BS-9F-Hef" customClass="AnalysisHeaderViewCell" customModule="SwiftWarplyFramework" customModuleProvider="target"> | 4323 | <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="AnalysisHeaderViewCell" id="5BS-9F-Hef" customClass="AnalysisHeaderViewCell" customModule="SwiftWarplyFramework" customModuleProvider="target"> |
4324 | - <rect key="frame" x="0.0" y="150" width="414" height="183.5"/> | 4324 | + <rect key="frame" x="0.0" y="148" width="414" height="183.5"/> |
4325 | <autoresizingMask key="autoresizingMask"/> | 4325 | <autoresizingMask key="autoresizingMask"/> |
4326 | <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="5BS-9F-Hef" id="iez-m4-rSa"> | 4326 | <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="5BS-9F-Hef" id="iez-m4-rSa"> |
4327 | <rect key="frame" x="0.0" y="0.0" width="414" height="183.5"/> | 4327 | <rect key="frame" x="0.0" y="0.0" width="414" height="183.5"/> |
... | @@ -4364,17 +4364,17 @@ | ... | @@ -4364,17 +4364,17 @@ |
4364 | </connections> | 4364 | </connections> |
4365 | </tableViewCell> | 4365 | </tableViewCell> |
4366 | <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="AnalysisHeaderMessageViewCell" id="9cE-DQ-oc7" customClass="AnalysisHeaderMessageViewCell" customModule="SwiftWarplyFramework" customModuleProvider="target"> | 4366 | <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="AnalysisHeaderMessageViewCell" id="9cE-DQ-oc7" customClass="AnalysisHeaderMessageViewCell" customModule="SwiftWarplyFramework" customModuleProvider="target"> |
4367 | - <rect key="frame" x="0.0" y="333.5" width="414" height="305.5"/> | 4367 | + <rect key="frame" x="0.0" y="331.5" width="414" height="303.5"/> |
4368 | <autoresizingMask key="autoresizingMask"/> | 4368 | <autoresizingMask key="autoresizingMask"/> |
4369 | <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="9cE-DQ-oc7" id="Kcf-Zv-eMe"> | 4369 | <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="9cE-DQ-oc7" id="Kcf-Zv-eMe"> |
4370 | - <rect key="frame" x="0.0" y="0.0" width="414" height="305.5"/> | 4370 | + <rect key="frame" x="0.0" y="0.0" width="414" height="303.5"/> |
4371 | <autoresizingMask key="autoresizingMask"/> | 4371 | <autoresizingMask key="autoresizingMask"/> |
4372 | <subviews> | 4372 | <subviews> |
4373 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="UwJ-Vz-4Nt"> | 4373 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="UwJ-Vz-4Nt"> |
4374 | - <rect key="frame" x="10" y="155" width="394" height="92"/> | 4374 | + <rect key="frame" x="10" y="155" width="394" height="90"/> |
4375 | <subviews> | 4375 | <subviews> |
4376 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Μέχρι τώρα έχεις κερδίσει 20,00€ σε προσφορές από 3 κουπόνια!" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Yth-0S-P60"> | 4376 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Μέχρι τώρα έχεις κερδίσει 20,00€ σε προσφορές από 3 κουπόνια!" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Yth-0S-P60"> |
4377 | - <rect key="frame" x="40" y="25" width="314" height="42"/> | 4377 | + <rect key="frame" x="40" y="25" width="314" height="40"/> |
4378 | <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> | 4378 | <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> |
4379 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="17"/> | 4379 | <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="17"/> |
4380 | <nil key="textColor"/> | 4380 | <nil key="textColor"/> |
... | @@ -4391,6 +4391,7 @@ | ... | @@ -4391,6 +4391,7 @@ |
4391 | </view> | 4391 | </view> |
4392 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="QY9-ar-jbw"> | 4392 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="QY9-ar-jbw"> |
4393 | <rect key="frame" x="157" y="25" width="100" height="100"/> | 4393 | <rect key="frame" x="157" y="25" width="100" height="100"/> |
4394 | + <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> | ||
4394 | <constraints> | 4395 | <constraints> |
4395 | <constraint firstAttribute="width" constant="100" id="ZuH-X9-Nie"/> | 4396 | <constraint firstAttribute="width" constant="100" id="ZuH-X9-Nie"/> |
4396 | <constraint firstAttribute="height" constant="100" id="dUQ-Ou-Apu"/> | 4397 | <constraint firstAttribute="height" constant="100" id="dUQ-Ou-Apu"/> |
... | @@ -4406,7 +4407,7 @@ | ... | @@ -4406,7 +4407,7 @@ |
4406 | <nil key="highlightedColor"/> | 4407 | <nil key="highlightedColor"/> |
4407 | </label> | 4408 | </label> |
4408 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Δεν έχεις εξαργυρώσει ακόμη κουπόνια" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="AYW-hj-qMf"> | 4409 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Δεν έχεις εξαργυρώσει ακόμη κουπόνια" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="AYW-hj-qMf"> |
4409 | - <rect key="frame" x="20" y="277" width="374" height="18.5"/> | 4410 | + <rect key="frame" x="20" y="275" width="374" height="18.5"/> |
4410 | <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> | 4411 | <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> |
4411 | <constraints> | 4412 | <constraints> |
4412 | <constraint firstAttribute="height" constant="18.5" id="kYc-mP-Wlt"/> | 4413 | <constraint firstAttribute="height" constant="18.5" id="kYc-mP-Wlt"/> |
... | @@ -4449,7 +4450,7 @@ | ... | @@ -4449,7 +4450,7 @@ |
4449 | </connections> | 4450 | </connections> |
4450 | </tableViewCell> | 4451 | </tableViewCell> |
4451 | <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="AnalysisMoreViewCell" id="taF-BW-P6u" customClass="AnalysisMoreViewCell" customModule="SwiftWarplyFramework" customModuleProvider="target"> | 4452 | <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="AnalysisMoreViewCell" id="taF-BW-P6u" customClass="AnalysisMoreViewCell" customModule="SwiftWarplyFramework" customModuleProvider="target"> |
4452 | - <rect key="frame" x="0.0" y="639" width="414" height="60"/> | 4453 | + <rect key="frame" x="0.0" y="635" width="414" height="60"/> |
4453 | <autoresizingMask key="autoresizingMask"/> | 4454 | <autoresizingMask key="autoresizingMask"/> |
4454 | <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="taF-BW-P6u" id="qTs-KC-BNN"> | 4455 | <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="taF-BW-P6u" id="qTs-KC-BNN"> |
4455 | <rect key="frame" x="0.0" y="0.0" width="414" height="60"/> | 4456 | <rect key="frame" x="0.0" y="0.0" width="414" height="60"/> | ... | ... |
... | @@ -25,6 +25,12 @@ class SharingHistoryViewController: AnalysisChildViewController { | ... | @@ -25,6 +25,12 @@ class SharingHistoryViewController: AnalysisChildViewController { |
25 | self.tableView.delegate = self | 25 | self.tableView.delegate = self |
26 | self.tableView.dataSource = self | 26 | self.tableView.dataSource = self |
27 | 27 | ||
28 | + // Add shadow | ||
29 | + self.tableView.layer.shadowColor = UIColor(red: 0.00, green: 0.00, blue: 0.00, alpha: 0.2).cgColor | ||
30 | + self.tableView.layer.shadowOffset = CGSize(width: 0.0, height: 1.0) | ||
31 | + self.tableView.layer.shadowOpacity = 1.0 | ||
32 | + self.tableView.layer.shadowRadius = 1.0 | ||
33 | + | ||
28 | self.refreshControl = UIRefreshControl() | 34 | self.refreshControl = UIRefreshControl() |
29 | self.refreshControl?.addTarget(self, action: #selector(handleRefresh(_:)), for: .valueChanged) | 35 | self.refreshControl?.addTarget(self, action: #selector(handleRefresh(_:)), for: .valueChanged) |
30 | 36 | ||
... | @@ -153,7 +159,8 @@ class SharingHistoryViewController: AnalysisChildViewController { | ... | @@ -153,7 +159,8 @@ class SharingHistoryViewController: AnalysisChildViewController { |
153 | let view = UIView(frame: CGRect(x: 0, y: 0, width: tableView.frame.width, height: 50)) | 159 | let view = UIView(frame: CGRect(x: 0, y: 0, width: tableView.frame.width, height: 50)) |
154 | 160 | ||
155 | let viewBorder = UIView(frame: CGRect(x: 10, y: 0, width: view.frame.width-20, height: view.frame.height)) | 161 | let viewBorder = UIView(frame: CGRect(x: 10, y: 0, width: view.frame.width-20, height: view.frame.height)) |
156 | - viewBorder.backgroundColor = UIColor(red: 0.90, green: 0.90, blue: 0.90, alpha: 1.00) | 162 | + viewBorder.backgroundColor = .white |
163 | +// viewBorder.backgroundColor = UIColor(red: 0.90, green: 0.90, blue: 0.90, alpha: 1.00) | ||
157 | 164 | ||
158 | viewBorder.layer.cornerRadius = 16.5 | 165 | viewBorder.layer.cornerRadius = 16.5 |
159 | viewBorder.layer.maskedCorners = [ .layerMinXMinYCorner, .layerMaxXMinYCorner] // Top left, bottom right corner radius | 166 | viewBorder.layer.maskedCorners = [ .layerMinXMinYCorner, .layerMaxXMinYCorner] // Top left, bottom right corner radius |
... | @@ -214,7 +221,8 @@ class SharingHistoryViewController: AnalysisChildViewController { | ... | @@ -214,7 +221,8 @@ class SharingHistoryViewController: AnalysisChildViewController { |
214 | let view = UIView(frame: CGRect(x: 0, y: 0, width: tableView.frame.width, height: 30)) | 221 | let view = UIView(frame: CGRect(x: 0, y: 0, width: tableView.frame.width, height: 30)) |
215 | 222 | ||
216 | let viewBorder = UIView(frame: CGRect(x: 10, y: 0, width: view.frame.width-20, height: view.frame.height)) | 223 | let viewBorder = UIView(frame: CGRect(x: 10, y: 0, width: view.frame.width-20, height: view.frame.height)) |
217 | - viewBorder.backgroundColor = UIColor(red: 0.90, green: 0.90, blue: 0.90, alpha: 1.00) | 224 | + viewBorder.backgroundColor = .white |
225 | +// viewBorder.backgroundColor = UIColor(red: 0.90, green: 0.90, blue: 0.90, alpha: 1.00) | ||
218 | 226 | ||
219 | viewBorder.layer.cornerRadius = 16.5 | 227 | viewBorder.layer.cornerRadius = 16.5 |
220 | viewBorder.layer.maskedCorners = [ .layerMinXMaxYCorner, .layerMaxXMaxYCorner] // bottom left, bottom right corner radius | 228 | viewBorder.layer.maskedCorners = [ .layerMinXMaxYCorner, .layerMaxXMaxYCorner] // bottom left, bottom right corner radius | ... | ... |
... | @@ -178,8 +178,8 @@ import SwiftEventBus | ... | @@ -178,8 +178,8 @@ import SwiftEventBus |
178 | questionnaireButton.layer.borderColor = UIColor(red: 0.05, green: 0.65, blue: 0.00, alpha: 1.00).cgColor | 178 | questionnaireButton.layer.borderColor = UIColor(red: 0.05, green: 0.65, blue: 0.00, alpha: 1.00).cgColor |
179 | 179 | ||
180 | dfyEarnBannerInnerView.layer.cornerRadius = 16.5 | 180 | dfyEarnBannerInnerView.layer.cornerRadius = 16.5 |
181 | - dfyEarnBannerInnerView.layer.borderWidth = 1 | 181 | +// dfyEarnBannerInnerView.layer.borderWidth = 1 |
182 | - dfyEarnBannerInnerView.layer.borderColor = UIColor(red: 0.90, green: 0.90, blue: 0.90, alpha: 1.00).cgColor | 182 | +// dfyEarnBannerInnerView.layer.borderColor = UIColor(red: 0.90, green: 0.90, blue: 0.90, alpha: 1.00).cgColor |
183 | 183 | ||
184 | // Add shadow | 184 | // Add shadow |
185 | dfyEarnBannerView.layer.shadowColor = UIColor(red: 0.00, green: 0.00, blue: 0.00, alpha: 0.2).cgColor | 185 | dfyEarnBannerView.layer.shadowColor = UIColor(red: 0.00, green: 0.00, blue: 0.00, alpha: 0.2).cgColor |
... | @@ -242,8 +242,8 @@ import SwiftEventBus | ... | @@ -242,8 +242,8 @@ import SwiftEventBus |
242 | } | 242 | } |
243 | 243 | ||
244 | couponEarnInnerView.layer.cornerRadius = 16.5 | 244 | couponEarnInnerView.layer.cornerRadius = 16.5 |
245 | - couponEarnInnerView.layer.borderWidth = 1 | 245 | +// couponEarnInnerView.layer.borderWidth = 1 |
246 | - couponEarnInnerView.layer.borderColor = UIColor(red: 0.90, green: 0.90, blue: 0.90, alpha: 1.00).cgColor | 246 | +// couponEarnInnerView.layer.borderColor = UIColor(red: 0.90, green: 0.90, blue: 0.90, alpha: 1.00).cgColor |
247 | 247 | ||
248 | // Add shadow | 248 | // Add shadow |
249 | couponEarnView.layer.shadowColor = UIColor(red: 0.00, green: 0.00, blue: 0.00, alpha: 0.2).cgColor | 249 | couponEarnView.layer.shadowColor = UIColor(red: 0.00, green: 0.00, blue: 0.00, alpha: 0.2).cgColor | ... | ... |
-
Please register or login to post a comment