Browse Source

MoneyGram, fraud warning UI optimized

pull/1/head
Jeongbae Kong 4 years ago
parent
commit
77d6c1db0a
  1. 17
      GME Remit/Modules/Notice/NotificationHistory/User Interface/Presenter/NotificationHistoryPresenter.swift
  2. 6
      GME Remit/Modules/Notice/NotificationHistory/User Interface/View/NotificationHistory.storyboard
  3. 10
      GME Remit/Modules/RecipientModules/Recipients/User Interface/View/Recipients.storyboard
  4. 173
      GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/User Interface/View/SendMoneyReceipt.storyboard
  5. 7
      GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/User Interface/View/SendMoneyReceiptViewController.swift
  6. 22
      GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyVerification/User Interface/View/SendMoneyVerification.storyboard
  7. 6
      GME Remit/Modules/RemittanceModules/TransactionHistoryModules/TransactionHistory/User Interface/View/TransactionHistory.storyboard
  8. 30
      GME Remit/Modules/RewardModules/Reward/User Interface/View/Reward.storyboard

17
GME Remit/Modules/Notice/NotificationHistory/User Interface/Presenter/NotificationHistoryPresenter.swift

@ -58,8 +58,23 @@ class NotificationHistoryPresenter: ViewModelType {
extension NotificationHistoryPresenter: NotificationHistoryInteractorOutput { extension NotificationHistoryPresenter: NotificationHistoryInteractorOutput {
func setNotices(with model: [NoticeModel]) { func setNotices(with model: [NoticeModel]) {
progressLinker.onNext(false) progressLinker.onNext(false)
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "MM/dd/yyyy HH:mm"
let dates = model.compactMap { dateFormatter.date(from: $0.date ?? "") }
let sortedDates = dates.sorted { $0 > $1 }
print("123123123 \(sortedDates)")
let dateStrings = sortedDates.compactMap { dateFormatter.string(from: $0)}
print("123123123 \(dateStrings)")
let filteredDate = model.sorted(by: { (noticeModel1, noticeModel2) -> Bool in let filteredDate = model.sorted(by: { (noticeModel1, noticeModel2) -> Bool in
return noticeModel1.date ?? "" > noticeModel2.date ?? ""
guard let date1 = noticeModel1.date else { return true }
guard let date2 = noticeModel2.date else { return false }
return date1 > date2
}) })
self.model.onNext(filteredDate) self.model.onNext(filteredDate)

6
GME Remit/Modules/Notice/NotificationHistory/User Interface/View/NotificationHistory.storyboard

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="15705" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="kME-hR-NgN">
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="16096" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="kME-hR-NgN">
<device id="retina4_7" orientation="portrait" appearance="light"/> <device id="retina4_7" orientation="portrait" appearance="light"/>
<dependencies> <dependencies>
<deployment identifier="iOS"/> <deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="15706"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="16087"/>
<capability name="Named colors" minToolsVersion="9.0"/> <capability name="Named colors" minToolsVersion="9.0"/>
<capability name="Safe area layout guides" minToolsVersion="9.0"/> <capability name="Safe area layout guides" minToolsVersion="9.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/> <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
@ -161,6 +161,7 @@
<point key="canvasLocation" x="-92" y="232.53373313343329"/> <point key="canvasLocation" x="-92" y="232.53373313343329"/>
</scene> </scene>
</scenes> </scenes>
<color key="tintColor" red="0.78177064659999995" green="0.55228364470000002" blue="0.018981300289999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<resources> <resources>
<image name="ic_cancel" width="12" height="12"/> <image name="ic_cancel" width="12" height="12"/>
<image name="new" width="17" height="5"/> <image name="new" width="17" height="5"/>
@ -175,5 +176,4 @@
<color red="0.28999999165534973" green="0.28999999165534973" blue="0.28999999165534973" alpha="1" colorSpace="custom" customColorSpace="sRGB"/> <color red="0.28999999165534973" green="0.28999999165534973" blue="0.28999999165534973" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</namedColor> </namedColor>
</resources> </resources>
<color key="tintColor" red="0.78177064659999995" green="0.55228364470000002" blue="0.018981300289999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</document> </document>

10
GME Remit/Modules/RecipientModules/Recipients/User Interface/View/Recipients.storyboard

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="15705" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="16096" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait" appearance="light"/> <device id="retina4_7" orientation="portrait" appearance="light"/>
<dependencies> <dependencies>
<deployment identifier="iOS"/> <deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="15706"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="16087"/>
<capability name="Named colors" minToolsVersion="9.0"/> <capability name="Named colors" minToolsVersion="9.0"/>
<capability name="Safe area layout guides" minToolsVersion="9.0"/> <capability name="Safe area layout guides" minToolsVersion="9.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/> <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
@ -29,7 +29,7 @@
<rect key="frame" x="20" y="10" width="335" height="80"/> <rect key="frame" x="20" y="10" width="335" height="80"/>
<subviews> <subviews>
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_recipient" translatesAutoresizingMaskIntoConstraints="NO" id="JqD-KC-CpN"> <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_recipient" translatesAutoresizingMaskIntoConstraints="NO" id="JqD-KC-CpN">
<rect key="frame" x="20" y="7.5" width="65" height="65"/>
<rect key="frame" x="20" y="15" width="50" height="50"/>
<color key="backgroundColor" name="ThemeMainBackground"/> <color key="backgroundColor" name="ThemeMainBackground"/>
<constraints> <constraints>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="50" id="AET-jx-i1P"/> <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="50" id="AET-jx-i1P"/>
@ -38,7 +38,7 @@
</constraints> </constraints>
</imageView> </imageView>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="New Recipient" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="Wj9-qf-u2U"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="New Recipient" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="Wj9-qf-u2U">
<rect key="frame" x="105" y="30" width="213" height="20"/>
<rect key="frame" x="90" y="30" width="228" height="20"/>
<fontDescription key="fontDescription" name="SanFranciscoDisplay-Regular" family="San Francisco Display" pointSize="17"/> <fontDescription key="fontDescription" name="SanFranciscoDisplay-Regular" family="San Francisco Display" pointSize="17"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
@ -289,6 +289,7 @@
<point key="canvasLocation" x="736.79999999999995" y="223.53823088455775"/> <point key="canvasLocation" x="736.79999999999995" y="223.53823088455775"/>
</scene> </scene>
</scenes> </scenes>
<color key="tintColor" red="0.78177064659999995" green="0.55228364470000002" blue="0.018981300289999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<resources> <resources>
<image name="flag_south_korea" width="512" height="512"/> <image name="flag_south_korea" width="512" height="512"/>
<image name="ic-sendmoney" width="20.5" height="20.5"/> <image name="ic-sendmoney" width="20.5" height="20.5"/>
@ -308,5 +309,4 @@
<color red="0.28999999165534973" green="0.28999999165534973" blue="0.28999999165534973" alpha="1" colorSpace="custom" customColorSpace="sRGB"/> <color red="0.28999999165534973" green="0.28999999165534973" blue="0.28999999165534973" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</namedColor> </namedColor>
</resources> </resources>
<color key="tintColor" red="0.78177064659999995" green="0.55228364470000002" blue="0.018981300289999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</document> </document>

173
GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/User Interface/View/SendMoneyReceipt.storyboard

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="16096" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES"> <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="16096" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
<device id="retina6_1" orientation="portrait" appearance="light"/>
<device id="retina5_5" orientation="portrait" appearance="light"/>
<dependencies> <dependencies>
<deployment identifier="iOS"/> <deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="16087"/> <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="16087"/>
@ -41,28 +41,28 @@
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews> <subviews>
<scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" translatesAutoresizingMaskIntoConstraints="NO" id="7Ht-uj-bS8"> <scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" translatesAutoresizingMaskIntoConstraints="NO" id="7Ht-uj-bS8">
<rect key="frame" x="0.0" y="0.0" width="375" height="966"/>
<rect key="frame" x="0.0" y="0.0" width="375" height="1000"/>
<subviews> <subviews>
<view contentMode="scaleToFill" placeholderIntrinsicWidth="375" placeholderIntrinsicHeight="894.5" translatesAutoresizingMaskIntoConstraints="NO" id="WYP-Q8-sI7"> <view contentMode="scaleToFill" placeholderIntrinsicWidth="375" placeholderIntrinsicHeight="894.5" translatesAutoresizingMaskIntoConstraints="NO" id="WYP-Q8-sI7">
<rect key="frame" x="0.0" y="0.0" width="375" height="938"/>
<rect key="frame" x="0.0" y="0.0" width="375" height="982"/>
<subviews> <subviews>
<view clipsSubviews="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="rub-fY-JfS"> <view clipsSubviews="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="rub-fY-JfS">
<rect key="frame" x="10" y="12" width="355" height="226"/>
<rect key="frame" x="10" y="12" width="355" height="270"/>
<subviews> <subviews>
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_recipient_bg" translatesAutoresizingMaskIntoConstraints="NO" id="7gs-aB-SPb"> <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_recipient_bg" translatesAutoresizingMaskIntoConstraints="NO" id="7gs-aB-SPb">
<rect key="frame" x="0.0" y="0.0" width="355" height="226"/>
<rect key="frame" x="0.0" y="0.0" width="355" height="270"/>
</imageView> </imageView>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Total Payout Amount: " textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="QkS-Yx-Lt4">
<rect key="frame" x="108.5" y="117" width="138" height="17"/>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Total Payout Amount: " textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="QkS-Yx-Lt4">
<rect key="frame" x="113.00000000000001" y="117" width="129.33333333333337" height="21"/>
<constraints> <constraints>
<constraint firstAttribute="height" constant="17" id="Q0t-Ck-6nH"/>
<constraint firstAttribute="height" constant="21" id="chX-N9-jBl"/>
</constraints> </constraints>
<fontDescription key="fontDescription" name="SanFranciscoDisplay-Regular" family="San Francisco Display" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoDisplay-Regular" family="San Francisco Display" pointSize="14"/>
<color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
</label> </label>
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_gme_logo" translatesAutoresizingMaskIntoConstraints="NO" id="Oqg-r5-Yx8"> <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_gme_logo" translatesAutoresizingMaskIntoConstraints="NO" id="Oqg-r5-Yx8">
<rect key="frame" x="157.5" y="16" width="40" height="40"/>
<rect key="frame" x="157.66666666666666" y="16" width="40" height="40"/>
<constraints> <constraints>
<constraint firstAttribute="height" constant="40" id="gcn-z7-9Qc"/> <constraint firstAttribute="height" constant="40" id="gcn-z7-9Qc"/>
</constraints> </constraints>
@ -75,8 +75,8 @@
</constraints> </constraints>
<inset key="contentEdgeInsets" minX="10" minY="0.0" maxX="0.0" maxY="10"/> <inset key="contentEdgeInsets" minX="10" minY="0.0" maxX="0.0" maxY="10"/>
</button> </button>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Transfer Successful" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="JkE-DM-feU">
<rect key="frame" x="78.5" y="59" width="198" height="21"/>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Transfer Successful" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="JkE-DM-feU">
<rect key="frame" x="78.333333333333329" y="59" width="198.66666666666669" height="21"/>
<constraints> <constraints>
<constraint firstAttribute="height" constant="21" id="DkI-xS-doz"/> <constraint firstAttribute="height" constant="21" id="DkI-xS-doz"/>
</constraints> </constraints>
@ -84,76 +84,85 @@
<color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
</label> </label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="GME Control No. " textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="97m-vq-ytA" userLabel="Label Control Number">
<rect key="frame" x="114" y="142" width="127" height="21"/>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="GME Control No. " textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="97m-vq-ytA" userLabel="Label Control Number">
<rect key="frame" x="116.66666666666669" y="146" width="122" height="21"/>
<constraints> <constraints>
<constraint firstAttribute="height" constant="21" id="hze-ZQ-19v"/>
<constraint firstAttribute="height" constant="21" id="B3T-rc-sl1"/>
</constraints> </constraints>
<fontDescription key="fontDescription" name="SanFranciscoDisplay-Heavy" family="San Francisco Display" pointSize="16"/> <fontDescription key="fontDescription" name="SanFranciscoDisplay-Heavy" family="San Francisco Display" pointSize="16"/>
<color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
</label> </label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Customer" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="KlR-r5-hsc" userLabel="Label Recipient">
<rect key="frame" x="147" y="84" width="61.5" height="25"/>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Customer" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="KlR-r5-hsc" userLabel="Label Recipient">
<rect key="frame" x="116.66666666666669" y="84" width="122" height="21"/>
<constraints>
<constraint firstAttribute="height" constant="21" id="h32-zP-aoR"/>
</constraints>
<fontDescription key="fontDescription" name="SanFranciscoDisplay-Semibold" family="San Francisco Display" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoDisplay-Semibold" family="San Francisco Display" pointSize="14"/>
<color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
</label> </label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Payment provided by Money gram" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="b46-CG-sdO" userLabel="Label Secure">
<rect key="frame" x="82" y="169" width="232" height="20"/>
<fontDescription key="fontDescription" name="SanFranciscoDisplay-Regular" family="San Francisco Display" pointSize="16"/>
<color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<nil key="highlightedColor"/>
</label>
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="XZ4-oT-aRP">
<rect key="frame" x="34" y="162" width="37" height="34"/>
<stackView opaque="NO" contentMode="scaleToFill" axis="vertical" alignment="top" spacing="1" translatesAutoresizingMaskIntoConstraints="NO" id="DpT-EG-MKU">
<rect key="frame" x="20" y="172" width="315" height="93"/>
<subviews>
<stackView opaque="NO" contentMode="scaleToFill" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="3rx-1J-TMa">
<rect key="frame" x="0.0" y="0.0" width="275.66666666666669" height="36"/>
<subviews>
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="angryFaceLarge" translatesAutoresizingMaskIntoConstraints="NO" id="XZ4-oT-aRP">
<rect key="frame" x="0.0" y="0.0" width="36" height="36"/>
</imageView>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Payment provided by MoneyGram" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="8" translatesAutoresizingMaskIntoConstraints="NO" id="b46-CG-sdO" userLabel="Label Secure">
<rect key="frame" x="45.999999999999986" y="0.0" width="229.66666666666663" height="36"/>
<fontDescription key="fontDescription" name="SanFranciscoDisplay-Regular" family="San Francisco Display" pointSize="16"/>
<color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<nil key="highlightedColor"/>
</label>
</subviews>
</stackView>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Please donot share transaction reference number other than valid receipent." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" minimumFontSize="6" translatesAutoresizingMaskIntoConstraints="NO" id="XKk-Kj-0VO">
<rect key="frame" x="0.0" y="37" width="315" height="56"/>
<constraints>
<constraint firstAttribute="height" constant="56" id="tBh-TA-Wkr"/>
</constraints>
<fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="12"/>
<color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<nil key="highlightedColor"/>
</label>
</subviews>
<constraints> <constraints>
<constraint firstAttribute="width" constant="37" id="7lb-Wv-YM1"/>
<constraint firstAttribute="height" constant="34" id="zjT-w1-zTo"/>
<constraint firstAttribute="trailing" secondItem="XKk-Kj-0VO" secondAttribute="trailing" id="Pbe-iy-LpV"/>
<constraint firstItem="XKk-Kj-0VO" firstAttribute="leading" secondItem="DpT-EG-MKU" secondAttribute="leading" id="aKY-We-js5"/>
</constraints> </constraints>
</imageView>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Please donot share transaction reference number other than valid receipent." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="XKk-Kj-0VO">
<rect key="frame" x="10" y="196" width="335" height="30"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="12"/>
<color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<nil key="highlightedColor"/>
</label>
</stackView>
</subviews> </subviews>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints> <constraints>
<constraint firstAttribute="trailing" secondItem="b46-CG-sdO" secondAttribute="trailing" constant="41" id="27g-qv-6FL"/>
<constraint firstItem="QkS-Yx-Lt4" firstAttribute="top" secondItem="KlR-r5-hsc" secondAttribute="bottom" constant="8" symbolic="YES" id="2d6-Ks-2Fp"/>
<constraint firstItem="Oqg-r5-Yx8" firstAttribute="top" secondItem="rub-fY-JfS" secondAttribute="top" constant="16" id="7AX-L2-ZAI"/> <constraint firstItem="Oqg-r5-Yx8" firstAttribute="top" secondItem="rub-fY-JfS" secondAttribute="top" constant="16" id="7AX-L2-ZAI"/>
<constraint firstItem="XKk-Kj-0VO" firstAttribute="leading" secondItem="rub-fY-JfS" secondAttribute="leading" constant="10" id="DCt-NK-XPA"/>
<constraint firstAttribute="trailing" secondItem="DpT-EG-MKU" secondAttribute="trailing" constant="20" id="8yi-fc-6vt"/>
<constraint firstAttribute="trailing" secondItem="qsC-Fh-fNR" secondAttribute="trailing" constant="16" id="FMK-nd-Cbu"/> <constraint firstAttribute="trailing" secondItem="qsC-Fh-fNR" secondAttribute="trailing" constant="16" id="FMK-nd-Cbu"/>
<constraint firstItem="JkE-DM-feU" firstAttribute="centerX" secondItem="rub-fY-JfS" secondAttribute="centerX" id="Fsa-E3-fDY"/> <constraint firstItem="JkE-DM-feU" firstAttribute="centerX" secondItem="rub-fY-JfS" secondAttribute="centerX" id="Fsa-E3-fDY"/>
<constraint firstItem="97m-vq-ytA" firstAttribute="top" secondItem="QkS-Yx-Lt4" secondAttribute="bottom" constant="8" symbolic="YES" id="Gp2-aY-z2D"/>
<constraint firstItem="Oqg-r5-Yx8" firstAttribute="leading" secondItem="rub-fY-JfS" secondAttribute="leading" constant="157.5" id="MM6-7L-LlN"/>
<constraint firstAttribute="bottom" secondItem="QkS-Yx-Lt4" secondAttribute="bottom" constant="92" id="OWA-CT-ATs"/>
<constraint firstItem="b46-CG-sdO" firstAttribute="leading" secondItem="XZ4-oT-aRP" secondAttribute="trailing" constant="11" id="OnU-Xy-xeD"/>
<constraint firstAttribute="bottom" secondItem="XZ4-oT-aRP" secondAttribute="bottom" constant="30" id="VRv-eX-Rn7"/>
<constraint firstItem="97m-vq-ytA" firstAttribute="centerX" secondItem="QkS-Yx-Lt4" secondAttribute="centerX" id="bAN-0f-fvp"/>
<constraint firstItem="KlR-r5-hsc" firstAttribute="trailing" secondItem="97m-vq-ytA" secondAttribute="trailing" id="FuF-af-GFP"/>
<constraint firstItem="KlR-r5-hsc" firstAttribute="leading" secondItem="97m-vq-ytA" secondAttribute="leading" id="GqB-g5-dZ4"/>
<constraint firstItem="QkS-Yx-Lt4" firstAttribute="top" secondItem="KlR-r5-hsc" secondAttribute="bottom" constant="12" id="OEv-le-3Xu"/>
<constraint firstItem="DpT-EG-MKU" firstAttribute="top" secondItem="97m-vq-ytA" secondAttribute="bottom" constant="5" id="P8b-By-u5U"/>
<constraint firstItem="97m-vq-ytA" firstAttribute="top" secondItem="QkS-Yx-Lt4" secondAttribute="bottom" constant="8" id="WPI-ju-0vp"/>
<constraint firstItem="DpT-EG-MKU" firstAttribute="leading" secondItem="rub-fY-JfS" secondAttribute="leading" constant="20" id="XaF-6U-c6E"/>
<constraint firstItem="KlR-r5-hsc" firstAttribute="top" secondItem="JkE-DM-feU" secondAttribute="bottom" constant="4" id="aYw-2N-UDq"/>
<constraint firstItem="KlR-r5-hsc" firstAttribute="centerX" secondItem="QkS-Yx-Lt4" secondAttribute="centerX" id="bbZ-77-F6K"/>
<constraint firstItem="Oqg-r5-Yx8" firstAttribute="centerX" secondItem="JkE-DM-feU" secondAttribute="centerX" id="e98-Ua-9zb"/>
<constraint firstAttribute="trailing" secondItem="7gs-aB-SPb" secondAttribute="trailing" id="eEn-Dx-rrF"/> <constraint firstAttribute="trailing" secondItem="7gs-aB-SPb" secondAttribute="trailing" id="eEn-Dx-rrF"/>
<constraint firstAttribute="bottom" secondItem="7gs-aB-SPb" secondAttribute="bottom" id="fKF-Wg-RQ4"/> <constraint firstAttribute="bottom" secondItem="7gs-aB-SPb" secondAttribute="bottom" id="fKF-Wg-RQ4"/>
<constraint firstAttribute="trailing" secondItem="XKk-Kj-0VO" secondAttribute="trailing" constant="10" id="icD-8g-svU"/>
<constraint firstItem="JkE-DM-feU" firstAttribute="leading" secondItem="rub-fY-JfS" secondAttribute="leading" constant="78.5" id="lnl-K3-8pE"/>
<constraint firstItem="KlR-r5-hsc" firstAttribute="centerX" secondItem="JkE-DM-feU" secondAttribute="centerX" id="i0l-m1-TOw"/>
<constraint firstItem="JkE-DM-feU" firstAttribute="top" secondItem="Oqg-r5-Yx8" secondAttribute="bottom" constant="3" id="nxp-BU-dn9"/> <constraint firstItem="JkE-DM-feU" firstAttribute="top" secondItem="Oqg-r5-Yx8" secondAttribute="bottom" constant="3" id="nxp-BU-dn9"/>
<constraint firstItem="XKk-Kj-0VO" firstAttribute="top" secondItem="b46-CG-sdO" secondAttribute="bottom" constant="7" id="pNM-NV-Jri"/>
<constraint firstItem="KlR-r5-hsc" firstAttribute="top" secondItem="JkE-DM-feU" secondAttribute="bottom" constant="4" id="pPh-OC-iMg"/>
<constraint firstItem="7gs-aB-SPb" firstAttribute="leading" secondItem="rub-fY-JfS" secondAttribute="leading" id="ps4-Wq-4Lx"/> <constraint firstItem="7gs-aB-SPb" firstAttribute="leading" secondItem="rub-fY-JfS" secondAttribute="leading" id="ps4-Wq-4Lx"/>
<constraint firstItem="b46-CG-sdO" firstAttribute="top" secondItem="97m-vq-ytA" secondAttribute="bottom" constant="6" id="r87-On-9zu"/>
<constraint firstItem="XZ4-oT-aRP" firstAttribute="leading" secondItem="rub-fY-JfS" secondAttribute="leading" constant="34" id="sT8-kt-14M"/>
<constraint firstItem="qsC-Fh-fNR" firstAttribute="top" secondItem="rub-fY-JfS" secondAttribute="top" constant="16" id="t9k-V0-D76"/> <constraint firstItem="qsC-Fh-fNR" firstAttribute="top" secondItem="rub-fY-JfS" secondAttribute="top" constant="16" id="t9k-V0-D76"/>
<constraint firstItem="JkE-DM-feU" firstAttribute="centerX" secondItem="QkS-Yx-Lt4" secondAttribute="centerX" id="uLs-9g-IWS"/>
<constraint firstItem="JkE-DM-feU" firstAttribute="centerX" secondItem="KlR-r5-hsc" secondAttribute="centerX" id="ug8-4a-ud9"/>
<constraint firstAttribute="bottom" secondItem="XKk-Kj-0VO" secondAttribute="bottom" id="v8j-EX-AkV"/>
<constraint firstItem="XKk-Kj-0VO" firstAttribute="top" secondItem="XZ4-oT-aRP" secondAttribute="bottom" id="vxj-FA-KRg"/>
<constraint firstAttribute="bottom" secondItem="DpT-EG-MKU" secondAttribute="bottom" constant="5" id="w7d-46-jbY"/>
<constraint firstItem="7gs-aB-SPb" firstAttribute="top" secondItem="rub-fY-JfS" secondAttribute="top" id="xDR-cP-9q0"/> <constraint firstItem="7gs-aB-SPb" firstAttribute="top" secondItem="rub-fY-JfS" secondAttribute="top" id="xDR-cP-9q0"/>
<constraint firstAttribute="height" relation="greaterThanOrEqual" constant="222" id="z7w-5x-v3N"/>
<constraint firstAttribute="height" relation="greaterThanOrEqual" constant="270" id="z7w-5x-v3N"/>
</constraints> </constraints>
</view> </view>
<view opaque="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="fKI-eb-ZTN" customClass="ShadowView" customModule="GME_Remit" customModuleProvider="target"> <view opaque="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="fKI-eb-ZTN" customClass="ShadowView" customModule="GME_Remit" customModuleProvider="target">
<rect key="frame" x="10" y="248" width="355" height="600"/>
<rect key="frame" x="10" y="292" width="355" height="600"/>
<subviews> <subviews>
<stackView opaque="NO" contentMode="scaleToFill" axis="vertical" distribution="fillEqually" translatesAutoresizingMaskIntoConstraints="NO" id="N4e-L0-lEA"> <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" distribution="fillEqually" translatesAutoresizingMaskIntoConstraints="NO" id="N4e-L0-lEA">
<rect key="frame" x="0.0" y="0.0" width="355" height="600"/> <rect key="frame" x="0.0" y="0.0" width="355" height="600"/>
@ -165,13 +174,13 @@
<rect key="frame" x="13" y="0.0" width="329" height="50"/> <rect key="frame" x="13" y="0.0" width="329" height="50"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Transaction Date" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="0F1-wm-gWq" userLabel="Relation"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Transaction Date" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="0F1-wm-gWq" userLabel="Relation">
<rect key="frame" x="0.0" y="0.0" width="106.5" height="50"/>
<rect key="frame" x="0.0" y="0.0" width="108.33333333333333" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
</label> </label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="Qz4-OT-jiF"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="Qz4-OT-jiF">
<rect key="frame" x="106.5" y="0.0" width="222.5" height="50"/>
<rect key="frame" x="108.33333333333336" y="0.0" width="220.66666666666663" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
@ -194,13 +203,13 @@
<rect key="frame" x="13" y="0.0" width="329" height="50"/> <rect key="frame" x="13" y="0.0" width="329" height="50"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="253" verticalHuggingPriority="251" text="Receiver" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="hpj-CZ-7qv" userLabel="Email"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="253" verticalHuggingPriority="251" text="Receiver" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="hpj-CZ-7qv" userLabel="Email">
<rect key="frame" x="0.0" y="0.0" width="54.5" height="50"/>
<rect key="frame" x="0.0" y="0.0" width="55.333333333333336" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
</label> </label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="dxd-Uq-v7o"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="dxd-Uq-v7o">
<rect key="frame" x="56.5" y="0.0" width="272.5" height="50"/>
<rect key="frame" x="57.333333333333343" y="0.0" width="271.66666666666663" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
@ -253,13 +262,13 @@
<rect key="frame" x="13" y="0.0" width="329" height="50"/> <rect key="frame" x="13" y="0.0" width="329" height="50"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Mobile No." lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="bTl-Ab-V1o" userLabel="Mobile"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Mobile No." lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="bTl-Ab-V1o" userLabel="Mobile">
<rect key="frame" x="0.0" y="0.0" width="68.5" height="50"/>
<rect key="frame" x="0.0" y="0.0" width="67.333333333333329" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
</label> </label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="SJg-la-JAc"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="SJg-la-JAc">
<rect key="frame" x="70.5" y="0.0" width="258.5" height="50"/>
<rect key="frame" x="69.333333333333343" y="0.0" width="259.66666666666663" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
@ -285,13 +294,13 @@
<rect key="frame" x="13" y="0.0" width="329" height="50"/> <rect key="frame" x="13" y="0.0" width="329" height="50"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="300" verticalHuggingPriority="251" horizontalCompressionResistancePriority="900" text="Payout Agent/Bank" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="1bL-P8-CBf" userLabel="Agent"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="300" verticalHuggingPriority="251" horizontalCompressionResistancePriority="900" text="Payout Agent/Bank" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="1bL-P8-CBf" userLabel="Agent">
<rect key="frame" x="0.0" y="0.0" width="163.5" height="50"/>
<rect key="frame" x="0.0" y="0.0" width="163.66666666666666" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
</label> </label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ertserggfdhfdsdfgdsdfgertserggfdhfdsdfgdsdfgertserggfdhfdsdfgdsdfgertserggfdhfdsdfgdsdfg" textAlignment="right" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="98o-ui-Lmx"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ertserggfdhfdsdfgdsdfgertserggfdhfdsdfgdsdfgertserggfdhfdsdfgdsdfgertserggfdhfdsdfgdsdfg" textAlignment="right" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="98o-ui-Lmx">
<rect key="frame" x="165.5" y="0.0" width="163.5" height="50"/>
<rect key="frame" x="165.66666666666663" y="0.0" width="163.33333333333337" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
@ -316,13 +325,13 @@
<rect key="frame" x="13" y="0.0" width="329" height="50"/> <rect key="frame" x="13" y="0.0" width="329" height="50"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="252" verticalHuggingPriority="251" text="Total Sent Amount" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="aV9-MU-U9F" userLabel="Relation"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="252" verticalHuggingPriority="251" text="Total Sent Amount" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="aV9-MU-U9F" userLabel="Relation">
<rect key="frame" x="0.0" y="0.0" width="115.5" height="50"/>
<rect key="frame" x="0.0" y="0.0" width="117" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
</label> </label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="joO-Vx-01A"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="joO-Vx-01A">
<rect key="frame" x="117.5" y="0.0" width="211.5" height="50"/>
<rect key="frame" x="119" y="0.0" width="210" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
@ -345,13 +354,13 @@
<rect key="frame" x="13" y="0.0" width="329" height="50"/> <rect key="frame" x="13" y="0.0" width="329" height="50"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="300" verticalHuggingPriority="251" horizontalCompressionResistancePriority="900" text="Branch" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tPz-r0-qXQ" userLabel="Agent"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="300" verticalHuggingPriority="251" horizontalCompressionResistancePriority="900" text="Branch" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tPz-r0-qXQ" userLabel="Agent">
<rect key="frame" x="0.0" y="0.0" width="45" height="50"/>
<rect key="frame" x="0.0" y="0.0" width="45.666666666666664" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
</label> </label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="gWt-Rx-LIV"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="gWt-Rx-LIV">
<rect key="frame" x="47" y="0.0" width="282" height="50"/>
<rect key="frame" x="47.666666666666657" y="0.0" width="281.33333333333337" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
@ -374,13 +383,13 @@
<rect key="frame" x="13" y="0.0" width="329" height="50"/> <rect key="frame" x="13" y="0.0" width="329" height="50"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Account Number" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="AIR-Co-29n" userLabel="Agent"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Account Number" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="AIR-Co-29n" userLabel="Agent">
<rect key="frame" x="0.0" y="0.0" width="107" height="50"/>
<rect key="frame" x="0.0" y="0.0" width="107.33333333333333" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
</label> </label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="Mle-zI-ZDV"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="Mle-zI-ZDV">
<rect key="frame" x="109" y="0.0" width="220" height="50"/>
<rect key="frame" x="109.33333333333336" y="0.0" width="219.66666666666663" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
@ -403,13 +412,13 @@
<rect key="frame" x="13" y="0.0" width="329" height="50"/> <rect key="frame" x="13" y="0.0" width="329" height="50"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Service Fee" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="52t-h8-txs" userLabel="Agent"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Service Fee" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="52t-h8-txs" userLabel="Agent">
<rect key="frame" x="0.0" y="0.0" width="73.5" height="50"/>
<rect key="frame" x="0.0" y="0.0" width="73" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
</label> </label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="5Mm-Rr-tjC"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="5Mm-Rr-tjC">
<rect key="frame" x="75.5" y="0.0" width="253.5" height="50"/>
<rect key="frame" x="75" y="0.0" width="254" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
@ -432,13 +441,13 @@
<rect key="frame" x="13" y="0.0" width="329" height="50"/> <rect key="frame" x="13" y="0.0" width="329" height="50"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="252" verticalHuggingPriority="251" text="Used Coupon" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ncx-dc-Qlg" userLabel="Agent"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="252" verticalHuggingPriority="251" text="Used Coupon" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ncx-dc-Qlg" userLabel="Agent">
<rect key="frame" x="0.0" y="0.0" width="157" height="50"/>
<rect key="frame" x="0.0" y="0.0" width="149.33333333333334" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
</label> </label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="birthday(-20%)" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="PP3-Tg-vui"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="birthday(-20%)" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="PP3-Tg-vui">
<rect key="frame" x="159" y="0.0" width="170" height="50"/>
<rect key="frame" x="151.33333333333337" y="0.0" width="177.66666666666663" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
@ -461,13 +470,13 @@
<rect key="frame" x="13" y="0.0" width="329" height="50"/> <rect key="frame" x="13" y="0.0" width="329" height="50"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Ex Rate" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="pTI-kV-y2i" userLabel="Reciever"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Ex Rate" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="pTI-kV-y2i" userLabel="Reciever">
<rect key="frame" x="0.0" y="0.0" width="49" height="50"/>
<rect key="frame" x="0.0" y="0.0" width="47.333333333333336" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
</label> </label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="E9N-rz-5eO"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="E9N-rz-5eO">
<rect key="frame" x="51" y="0.0" width="278" height="50"/>
<rect key="frame" x="49.333333333333343" y="0.0" width="279.66666666666663" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
@ -490,13 +499,13 @@
<rect key="frame" x="13" y="0.0" width="329" height="50"/> <rect key="frame" x="13" y="0.0" width="329" height="50"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="252" verticalHuggingPriority="251" horizontalCompressionResistancePriority="1000" text="Total Payout Amount" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Rr9-dg-u1G" userLabel="Agent"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="252" verticalHuggingPriority="251" horizontalCompressionResistancePriority="1000" text="Total Payout Amount" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Rr9-dg-u1G" userLabel="Agent">
<rect key="frame" x="0.0" y="0.0" width="130.5" height="50"/>
<rect key="frame" x="0.0" y="0.0" width="132" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoText-Regular" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
</label> </label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="63I-2O-WVX"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="63I-2O-WVX">
<rect key="frame" x="132.5" y="0.0" width="196.5" height="50"/>
<rect key="frame" x="134" y="0.0" width="195" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
@ -533,10 +542,10 @@
</userDefinedRuntimeAttributes> </userDefinedRuntimeAttributes>
</view> </view>
<stackView opaque="NO" contentMode="scaleToFill" distribution="fillEqually" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="PMG-MW-2Jh"> <stackView opaque="NO" contentMode="scaleToFill" distribution="fillEqually" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="PMG-MW-2Jh">
<rect key="frame" x="10" y="868" width="355" height="40"/>
<rect key="frame" x="10" y="912" width="355" height="40"/>
<subviews> <subviews>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="CVW-u5-4q0"> <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="CVW-u5-4q0">
<rect key="frame" x="0.0" y="0.0" width="172.5" height="40"/>
<rect key="frame" x="0.0" y="0.0" width="172.66666666666666" height="40"/>
<color key="backgroundColor" name="ThemeRed"/> <color key="backgroundColor" name="ThemeRed"/>
<fontDescription key="fontDescription" name="SanFranciscoDisplay-Semibold" family="San Francisco Display" pointSize="14"/> <fontDescription key="fontDescription" name="SanFranciscoDisplay-Semibold" family="San Francisco Display" pointSize="14"/>
<state key="normal" title="Request to Cancel"> <state key="normal" title="Request to Cancel">
@ -552,7 +561,7 @@
</connections> </connections>
</button> </button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="APG-WQ-vh6"> <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="APG-WQ-vh6">
<rect key="frame" x="182.5" y="0.0" width="172.5" height="40"/>
<rect key="frame" x="182.66666666666663" y="0.0" width="172.33333333333337" height="40"/>
<color key="backgroundColor" name="ThemeRed"/> <color key="backgroundColor" name="ThemeRed"/>
<fontDescription key="fontDescription" name="SanFranciscoDisplay-Semibold" family="San Francisco Display" pointSize="13"/> <fontDescription key="fontDescription" name="SanFranciscoDisplay-Semibold" family="San Francisco Display" pointSize="13"/>
<state key="normal" title="Request to change"> <state key="normal" title="Request to change">
@ -574,7 +583,7 @@
</constraints> </constraints>
</stackView> </stackView>
<button hidden="YES" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="vlt-YJ-pwY"> <button hidden="YES" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="vlt-YJ-pwY">
<rect key="frame" x="10" y="868" width="355" height="50"/>
<rect key="frame" x="10" y="912" width="355" height="50"/>
<color key="backgroundColor" red="0.92941176469999998" green="0.10980392160000001" blue="0.14117647059999999" alpha="1" colorSpace="calibratedRGB"/> <color key="backgroundColor" red="0.92941176469999998" green="0.10980392160000001" blue="0.14117647059999999" alpha="1" colorSpace="calibratedRGB"/>
<constraints> <constraints>
<constraint firstAttribute="height" constant="50" id="ROj-N3-WAp"/> <constraint firstAttribute="height" constant="50" id="ROj-N3-WAp"/>
@ -654,6 +663,7 @@
<outlet property="mobileTitleLabel" destination="bTl-Ab-V1o" id="F8f-mH-7Gt"/> <outlet property="mobileTitleLabel" destination="bTl-Ab-V1o" id="F8f-mH-7Gt"/>
<outlet property="moneygramImageView" destination="XZ4-oT-aRP" id="zeh-8H-F6N"/> <outlet property="moneygramImageView" destination="XZ4-oT-aRP" id="zeh-8H-F6N"/>
<outlet property="moneygramLogoLabel" destination="b46-CG-sdO" id="ukR-HY-dMv"/> <outlet property="moneygramLogoLabel" destination="b46-CG-sdO" id="ukR-HY-dMv"/>
<outlet property="moneygramStackView" destination="3rx-1J-TMa" id="47D-wT-bbm"/>
<outlet property="payoutAgentTitleLabel" destination="1bL-P8-CBf" id="pd0-AV-HGh"/> <outlet property="payoutAgentTitleLabel" destination="1bL-P8-CBf" id="pd0-AV-HGh"/>
<outlet property="receiverNameContainerView" destination="P8E-dB-3bF" id="GKQ-Sd-APs"/> <outlet property="receiverNameContainerView" destination="P8E-dB-3bF" id="GKQ-Sd-APs"/>
<outlet property="recieverNameLabelLabel" destination="dxd-Uq-v7o" id="eGF-Lp-3mc"/> <outlet property="recieverNameLabelLabel" destination="dxd-Uq-v7o" id="eGF-Lp-3mc"/>
@ -684,11 +694,12 @@
<placeholder placeholderIdentifier="IBFirstResponder" id="b3B-PU-UlH" userLabel="First Responder" sceneMemberID="firstResponder"/> <placeholder placeholderIdentifier="IBFirstResponder" id="b3B-PU-UlH" userLabel="First Responder" sceneMemberID="firstResponder"/>
<tapGestureRecognizer id="Nbz-kB-4Hj"/> <tapGestureRecognizer id="Nbz-kB-4Hj"/>
</objects> </objects>
<point key="canvasLocation" x="-842.75362318840587" y="344.86607142857139"/>
<point key="canvasLocation" x="-842.75362318840587" y="344.83695652173918"/>
</scene> </scene>
</scenes> </scenes>
<color key="tintColor" red="0.78177064659999995" green="0.55228364470000002" blue="0.018981300289999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/> <color key="tintColor" red="0.78177064659999995" green="0.55228364470000002" blue="0.018981300289999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<resources> <resources>
<image name="angryFaceLarge" width="36" height="36"/>
<image name="ic_gme_logo" width="40" height="40"/> <image name="ic_gme_logo" width="40" height="40"/>
<image name="ic_recipient_bg" width="355" height="226"/> <image name="ic_recipient_bg" width="355" height="226"/>
<namedColor name="ThemeMainBackground"> <namedColor name="ThemeMainBackground">

7
GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/User Interface/View/SendMoneyReceiptViewController.swift

@ -69,6 +69,7 @@ class SendMoneyReceiptViewController: UIViewController {
@IBOutlet weak var moneygramImageView: UIImageView! @IBOutlet weak var moneygramImageView: UIImageView!
@IBOutlet weak var moneygramLogoLabel: UILabel! @IBOutlet weak var moneygramLogoLabel: UILabel!
@IBOutlet weak var warningLabel: UILabel! @IBOutlet weak var warningLabel: UILabel!
@IBOutlet weak var moneygramStackView: UIStackView!
// Body labels // Body labels
@IBOutlet weak var tansactionDateTitleLabel: UILabel! @IBOutlet weak var tansactionDateTitleLabel: UILabel!
@ -266,7 +267,7 @@ class SendMoneyReceiptViewController: UIViewController {
let fullName = firstName + " " + middleName + " " + lastName let fullName = firstName + " " + middleName + " " + lastName
self.recieverNameLabelLabel.text = fullName.uppercased() self.recieverNameLabelLabel.text = fullName.uppercased()
self.fullnameLabel.text = "To \(fullName.uppercased())"
self.fullnameLabel.text = "To: \(fullName.uppercased())"
self.transactionDateLabel.text = reciept?.transactionDate self.transactionDateLabel.text = reciept?.transactionDate
@ -298,12 +299,12 @@ class SendMoneyReceiptViewController: UIViewController {
if let imageData = reciept?.logoUrl, if let imageData = reciept?.logoUrl,
let url = URL(string: imageData) { let url = URL(string: imageData) {
moneygramImageView.backgroundColor = .themeRed
moneygramImageView.kf.setImage(with: url) moneygramImageView.kf.setImage(with: url)
} }
moneygramLogoLabel.text = reciept?.logoText moneygramLogoLabel.text = reciept?.logoText
} else { } else {
moneygramImageView.isHidden = true
moneygramLogoLabel.isHidden = true
moneygramStackView.isHidden = true
} }
warningLabel.text = reciept?.note warningLabel.text = reciept?.note
} }

22
GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyVerification/User Interface/View/SendMoneyVerification.storyboard

@ -298,7 +298,7 @@
</subviews> </subviews>
</stackView> </stackView>
<stackView opaque="NO" contentMode="scaleToFill" axis="vertical" translatesAutoresizingMaskIntoConstraints="NO" id="c7W-ci-3o9"> <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" translatesAutoresizingMaskIntoConstraints="NO" id="c7W-ci-3o9">
<rect key="frame" x="0.0" y="66" width="330" height="25"/>
<rect key="frame" x="0.0" y="66.5" width="330" height="25"/>
<subviews> <subviews>
<stackView opaque="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Ion-vp-h63"> <stackView opaque="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Ion-vp-h63">
<rect key="frame" x="0.0" y="0.0" width="330" height="25"/> <rect key="frame" x="0.0" y="0.0" width="330" height="25"/>
@ -327,7 +327,7 @@
</subviews> </subviews>
</stackView> </stackView>
<stackView opaque="NO" contentMode="scaleToFill" axis="vertical" translatesAutoresizingMaskIntoConstraints="NO" id="bYP-z7-pdo"> <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" translatesAutoresizingMaskIntoConstraints="NO" id="bYP-z7-pdo">
<rect key="frame" x="0.0" y="99" width="330" height="25"/>
<rect key="frame" x="0.0" y="99.5" width="330" height="25"/>
<subviews> <subviews>
<stackView opaque="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Gi5-r4-dyO"> <stackView opaque="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Gi5-r4-dyO">
<rect key="frame" x="0.0" y="0.0" width="330" height="25"/> <rect key="frame" x="0.0" y="0.0" width="330" height="25"/>
@ -356,7 +356,7 @@
</subviews> </subviews>
</stackView> </stackView>
<stackView opaque="NO" contentMode="scaleToFill" axis="vertical" translatesAutoresizingMaskIntoConstraints="NO" id="IRO-hu-J2s"> <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" translatesAutoresizingMaskIntoConstraints="NO" id="IRO-hu-J2s">
<rect key="frame" x="0.0" y="131.5" width="330" height="25"/>
<rect key="frame" x="0.0" y="132.5" width="330" height="25"/>
<subviews> <subviews>
<stackView opaque="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="cT0-TW-JtH"> <stackView opaque="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="cT0-TW-JtH">
<rect key="frame" x="0.0" y="0.0" width="330" height="25"/> <rect key="frame" x="0.0" y="0.0" width="330" height="25"/>
@ -383,13 +383,13 @@
</subviews> </subviews>
</stackView> </stackView>
<stackView opaque="NO" contentMode="scaleToFill" axis="vertical" translatesAutoresizingMaskIntoConstraints="NO" id="rk2-Ky-8dn"> <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" translatesAutoresizingMaskIntoConstraints="NO" id="rk2-Ky-8dn">
<rect key="frame" x="0.0" y="164.5" width="330" height="47"/>
<rect key="frame" x="0.0" y="166" width="330" height="45.5"/>
<subviews> <subviews>
<stackView opaque="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="eR3-EP-Bkf"> <stackView opaque="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="eR3-EP-Bkf">
<rect key="frame" x="0.0" y="0.0" width="330" height="47"/>
<rect key="frame" x="0.0" y="0.0" width="330" height="45.5"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Payout Agent/Bank" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="vzF-GP-Vyz"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Payout Agent/Bank" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="vzF-GP-Vyz">
<rect key="frame" x="0.0" y="0.0" width="120" height="47"/>
<rect key="frame" x="0.0" y="0.0" width="120" height="45.5"/>
<constraints> <constraints>
<constraint firstAttribute="width" constant="120" id="djk-ZF-0dD"/> <constraint firstAttribute="width" constant="120" id="djk-ZF-0dD"/>
</constraints> </constraints>
@ -398,7 +398,7 @@
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
</label> </label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="aaslkdfjalskdjfalksdjfalksdjfalksdjflkasdjflaksdjflaksdjflaksdjflaksdjflaksdjflkasdjfalksdjfalksdjf" textAlignment="right" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" minimumFontSize="12" translatesAutoresizingMaskIntoConstraints="NO" id="VpB-U7-5VE"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="aaslkdfjalskdjfalksdjfalksdjfalksdjflkasdjflaksdjflaksdjflaksdjflaksdjflaksdjflkasdjfalksdjfalksdjf" textAlignment="right" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" minimumFontSize="12" translatesAutoresizingMaskIntoConstraints="NO" id="VpB-U7-5VE">
<rect key="frame" x="120" y="0.0" width="210" height="47"/>
<rect key="frame" x="120" y="0.0" width="210" height="45.5"/>
<fontDescription key="fontDescription" name="SanFranciscoDisplay-Semibold" family="San Francisco Display" pointSize="13"/> <fontDescription key="fontDescription" name="SanFranciscoDisplay-Semibold" family="San Francisco Display" pointSize="13"/>
<color key="textColor" name="ThemeText"/> <color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
@ -494,10 +494,10 @@
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<subviews> <subviews>
<stackView opaque="NO" contentMode="scaleToFill" axis="vertical" alignment="center" spacing="3" translatesAutoresizingMaskIntoConstraints="NO" id="QPQ-CD-dbK"> <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" alignment="center" spacing="3" translatesAutoresizingMaskIntoConstraints="NO" id="QPQ-CD-dbK">
<rect key="frame" x="96.5" y="15" width="182" height="56"/>
<rect key="frame" x="91.5" y="15" width="192" height="56"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="I have read and agreed to " textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Yn5-1J-nDc"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="I have read and agreed to " textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Yn5-1J-nDc">
<rect key="frame" x="20" y="0.0" width="142.5" height="16"/>
<rect key="frame" x="20" y="0.0" width="152.5" height="16"/>
<constraints> <constraints>
<constraint firstAttribute="height" constant="16" id="JdA-Lq-CBJ"/> <constraint firstAttribute="height" constant="16" id="JdA-Lq-CBJ"/>
</constraints> </constraints>
@ -506,7 +506,7 @@
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
</label> </label>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="jdB-M7-bxd"> <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="jdB-M7-bxd">
<rect key="frame" x="0.0" y="19" width="182" height="20"/>
<rect key="frame" x="0.0" y="19" width="192" height="20"/>
<constraints> <constraints>
<constraint firstAttribute="height" constant="20" id="0Vz-S9-ULW"/> <constraint firstAttribute="height" constant="20" id="0Vz-S9-ULW"/>
</constraints> </constraints>
@ -519,7 +519,7 @@
</connections> </connections>
</button> </button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="1BJ-uU-LNZ"> <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="1BJ-uU-LNZ">
<rect key="frame" x="2" y="42" width="178" height="14"/>
<rect key="frame" x="2.5" y="42" width="187" height="14"/>
<fontDescription key="fontDescription" name="SanFranciscoDisplay-Medium" family="San Francisco Display" pointSize="12"/> <fontDescription key="fontDescription" name="SanFranciscoDisplay-Medium" family="San Francisco Display" pointSize="12"/>
<state key="normal" title="2. GME Remittance Fraud Warning"> <state key="normal" title="2. GME Remittance Fraud Warning">
<color key="titleColor" name="ThemeRed"/> <color key="titleColor" name="ThemeRed"/>

6
GME Remit/Modules/RemittanceModules/TransactionHistoryModules/TransactionHistory/User Interface/View/TransactionHistory.storyboard

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="15705" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="16096" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait" appearance="light"/> <device id="retina4_7" orientation="portrait" appearance="light"/>
<dependencies> <dependencies>
<deployment identifier="iOS"/> <deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="15706"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="16087"/>
<capability name="Named colors" minToolsVersion="9.0"/> <capability name="Named colors" minToolsVersion="9.0"/>
<capability name="Safe area layout guides" minToolsVersion="9.0"/> <capability name="Safe area layout guides" minToolsVersion="9.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/> <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
@ -477,6 +477,7 @@
<point key="canvasLocation" x="629.60000000000002" y="75.112443778110944"/> <point key="canvasLocation" x="629.60000000000002" y="75.112443778110944"/>
</scene> </scene>
</scenes> </scenes>
<color key="tintColor" red="0.78177064659999995" green="0.55228364470000002" blue="0.018981300289999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<resources> <resources>
<image name="ic_calender" width="25" height="25"/> <image name="ic_calender" width="25" height="25"/>
<image name="ic_error" width="55" height="55"/> <image name="ic_error" width="55" height="55"/>
@ -491,5 +492,4 @@
<color red="0.28999999165534973" green="0.28999999165534973" blue="0.28999999165534973" alpha="1" colorSpace="custom" customColorSpace="sRGB"/> <color red="0.28999999165534973" green="0.28999999165534973" blue="0.28999999165534973" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</namedColor> </namedColor>
</resources> </resources>
<color key="tintColor" red="0.78177064659999995" green="0.55228364470000002" blue="0.018981300289999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</document> </document>

30
GME Remit/Modules/RewardModules/Reward/User Interface/View/Reward.storyboard

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="14868" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="HSb-ou-7T5">
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="16096" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="HSb-ou-7T5">
<device id="retina4_7" orientation="portrait" appearance="dark"/> <device id="retina4_7" orientation="portrait" appearance="dark"/>
<dependencies> <dependencies>
<deployment identifier="iOS"/> <deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="14824"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="16087"/>
<capability name="Named colors" minToolsVersion="9.0"/> <capability name="Named colors" minToolsVersion="9.0"/>
<capability name="Safe area layout guides" minToolsVersion="9.0"/> <capability name="Safe area layout guides" minToolsVersion="9.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/> <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
@ -26,26 +26,26 @@
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews> <subviews>
<view clipsSubviews="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="mVq-cj-kN9"> <view clipsSubviews="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="mVq-cj-kN9">
<rect key="frame" x="10" y="10" width="355" height="264"/>
<rect key="frame" x="10" y="10" width="355" height="132"/>
<subviews> <subviews>
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="starredBackground" translatesAutoresizingMaskIntoConstraints="NO" id="OUC-GY-cfV"> <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="starredBackground" translatesAutoresizingMaskIntoConstraints="NO" id="OUC-GY-cfV">
<rect key="frame" x="0.0" y="0.0" width="355" height="264"/>
<rect key="frame" x="0.0" y="0.0" width="355" height="132"/>
</imageView> </imageView>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Note: The reward point is valid for a year only." textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="zsW-Jn-5cx"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Note: The reward point is valid for a year only." textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="zsW-Jn-5cx">
<rect key="frame" x="45" y="245.5" width="265.5" height="15.5"/>
<rect key="frame" x="45" y="113.5" width="265.5" height="15.5"/>
<fontDescription key="fontDescription" name="SanFranciscoDisplay-Regular" family="San Francisco Display" pointSize="13"/> <fontDescription key="fontDescription" name="SanFranciscoDisplay-Regular" family="San Francisco Display" pointSize="13"/>
<color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
</label> </label>
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_reward" translatesAutoresizingMaskIntoConstraints="NO" id="w0R-LI-YPR"> <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_reward" translatesAutoresizingMaskIntoConstraints="NO" id="w0R-LI-YPR">
<rect key="frame" x="75.5" y="79" width="80" height="80"/>
<rect key="frame" x="75.5" y="19.5" width="80" height="80"/>
<constraints> <constraints>
<constraint firstAttribute="height" constant="80" id="0qu-ST-7fP"/> <constraint firstAttribute="height" constant="80" id="0qu-ST-7fP"/>
<constraint firstAttribute="width" constant="80" id="LaH-ji-hpA"/> <constraint firstAttribute="width" constant="80" id="LaH-ji-hpA"/>
</constraints> </constraints>
</imageView> </imageView>
<stackView opaque="NO" contentMode="scaleToFill" axis="vertical" distribution="equalSpacing" alignment="center" spacing="8" translatesAutoresizingMaskIntoConstraints="NO" id="a1o-7y-Kgz"> <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" distribution="equalSpacing" alignment="center" spacing="8" translatesAutoresizingMaskIntoConstraints="NO" id="a1o-7y-Kgz">
<rect key="frame" x="184.5" y="94" width="98" height="50"/>
<rect key="frame" x="184.5" y="34.5" width="98" height="50"/>
<subviews> <subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Reward Points" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Vyv-ya-vvm"> <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Reward Points" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Vyv-ya-vvm">
<rect key="frame" x="0.0" y="0.0" width="98" height="17"/> <rect key="frame" x="0.0" y="0.0" width="98" height="17"/>
@ -83,7 +83,7 @@
</constraints> </constraints>
</view> </view>
<collectionView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" dataMode="prototypes" translatesAutoresizingMaskIntoConstraints="NO" id="vmj-sE-fUF"> <collectionView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" dataMode="prototypes" translatesAutoresizingMaskIntoConstraints="NO" id="vmj-sE-fUF">
<rect key="frame" x="10" y="314" width="355" height="343"/>
<rect key="frame" x="10" y="182" width="355" height="475"/>
<color key="backgroundColor" name="ThemeSubBackground"/> <color key="backgroundColor" name="ThemeSubBackground"/>
<collectionViewFlowLayout key="collectionViewLayout" minimumLineSpacing="0.0" minimumInteritemSpacing="0.0" id="TUx-T5-4WL"> <collectionViewFlowLayout key="collectionViewLayout" minimumLineSpacing="0.0" minimumInteritemSpacing="0.0" id="TUx-T5-4WL">
<size key="itemSize" width="320" height="260"/> <size key="itemSize" width="320" height="260"/>
@ -216,7 +216,7 @@
</cells> </cells>
</collectionView> </collectionView>
<segmentedControl opaque="NO" clipsSubviews="YES" contentMode="scaleAspectFit" selected="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" segmentControlStyle="plain" selectedSegmentIndex="0" translatesAutoresizingMaskIntoConstraints="NO" id="pUS-5u-yiU"> <segmentedControl opaque="NO" clipsSubviews="YES" contentMode="scaleAspectFit" selected="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" segmentControlStyle="plain" selectedSegmentIndex="0" translatesAutoresizingMaskIntoConstraints="NO" id="pUS-5u-yiU">
<rect key="frame" x="315" y="284" width="50" height="26"/>
<rect key="frame" x="315" y="152" width="50" height="26"/>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints> <constraints>
<constraint firstAttribute="width" constant="50" id="3Ig-8M-nEs"/> <constraint firstAttribute="width" constant="50" id="3Ig-8M-nEs"/>
@ -265,26 +265,26 @@
<point key="canvasLocation" x="847.20000000000005" y="232.53373313343329"/> <point key="canvasLocation" x="847.20000000000005" y="232.53373313343329"/>
</scene> </scene>
</scenes> </scenes>
<color key="tintColor" red="0.78177064659999995" green="0.55228364470000002" blue="0.018981300289999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<resources> <resources>
<image name="collection0" width="128" height="128"/> <image name="collection0" width="128" height="128"/>
<image name="ic_reward" width="74" height="74"/> <image name="ic_reward" width="74" height="74"/>
<image name="list0" width="128" height="128"/> <image name="list0" width="128" height="128"/>
<image name="starredBackground" width="355" height="132"/> <image name="starredBackground" width="355" height="132"/>
<namedColor name="ThemeMainBackground"> <namedColor name="ThemeMainBackground">
<color red="0.097999997437000275" green="0.097999997437000275" blue="0.097999997437000275" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<color red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</namedColor> </namedColor>
<namedColor name="ThemeRed"> <namedColor name="ThemeRed">
<color red="1" green="0.15299999713897705" blue="0.15299999713897705" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<color red="0.92941176470588238" green="0.10588235294117647" blue="0.14117647058823529" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</namedColor> </namedColor>
<namedColor name="ThemeSeparate"> <namedColor name="ThemeSeparate">
<color white="0.5" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<color red="0.82400000095367432" green="0.82400000095367432" blue="0.82400000095367432" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</namedColor> </namedColor>
<namedColor name="ThemeSubBackground"> <namedColor name="ThemeSubBackground">
<color red="0.14900000393390656" green="0.14900000393390656" blue="0.14900000393390656" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<color red="0.93300002813339233" green="0.93300002813339233" blue="0.93300002813339233" alpha="1" colorSpace="custom" customColorSpace="displayP3"/>
</namedColor> </namedColor>
<namedColor name="ThemeText"> <namedColor name="ThemeText">
<color white="0.80299997329711914" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<color red="0.28999999165534973" green="0.28999999165534973" blue="0.28999999165534973" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</namedColor> </namedColor>
</resources> </resources>
<color key="tintColor" red="0.78177064659999995" green="0.55228364470000002" blue="0.018981300289999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</document> </document>
Loading…
Cancel
Save