Browse Source

control number highlighted

pull/1/head
gme_2 6 years ago
parent
commit
ed995fb9b5
  1. 7
      GMERemittance/Module/SendMoney/SendMoneyReceipt/User Interface/View/SendMoneyReceipt.storyboard
  2. 3
      GMERemittance/Module/SendMoney/SendMoneyReceipt/User Interface/View/SendMoneyReceiptViewController.swift
  3. 2
      GMERemittance/Module/WalletStatement/User Interface/View/WalletStatement.storyboard
  4. 4
      GMERemittance/Utility/AppConstants.swift

7
GMERemittance/Module/SendMoney/SendMoneyReceipt/User Interface/View/SendMoneyReceipt.storyboard

@ -13,6 +13,9 @@
<array key="SanFranciscoDisplay-Bold.otf">
<string>SanFranciscoDisplay-Bold</string>
</array>
<array key="SanFranciscoDisplay-Heavy.otf">
<string>SanFranciscoDisplay-Heavy</string>
</array>
<array key="SanFranciscoDisplay-Regular.otf">
<string>SanFranciscoDisplay-Regular</string>
</array>
@ -114,11 +117,11 @@ Share with concerned party only</string>
</constraints>
</imageView>
<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="126" y="144" width="103" height="21"/>
<rect key="frame" x="117" y="144" width="122" height="21"/>
<constraints>
<constraint firstAttribute="height" constant="21" id="GFH-M7-zr4"/>
</constraints>
<fontDescription key="fontDescription" name="SanFranciscoDisplay-Semibold" family="San Francisco Display" pointSize="14"/>
<fontDescription key="fontDescription" name="SanFranciscoDisplay-Heavy" family="San Francisco Display" pointSize="16"/>
<color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<nil key="highlightedColor"/>
</label>

3
GMERemittance/Module/SendMoney/SendMoneyReceipt/User Interface/View/SendMoneyReceiptViewController.swift

@ -100,6 +100,7 @@ class SendMoneyReceiptViewController: UIViewController {
private func setup() {
// all setup should be done here
setupBackButton()
// self.gmeControlNumberLabel.textColor = AppConstants.themeBlueColor
}
func setupBackButton() {
@ -167,8 +168,6 @@ extension SendMoneyReceiptViewController: SendMoneyReceiptViewInterface {
}
func show(error: String) {
// let model = self.createMockModel()
// self.reciept = model
self.alert(message: error)
}

2
GMERemittance/Module/WalletStatement/User Interface/View/WalletStatement.storyboard

@ -32,7 +32,7 @@
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="s4k-ts-Yz0">
<rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
<subviews>
<tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="HXS-oS-mKa">
<tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="HXS-oS-mKa">
<rect key="frame" x="10" y="45" width="355" height="602"/>
<color key="backgroundColor" red="0.90588235289999997" green="0.92941176469999998" blue="0.94901960780000005" alpha="1" colorSpace="calibratedRGB"/>
<prototypes>

4
GMERemittance/Utility/AppConstants.swift

@ -55,15 +55,11 @@ class Utility {
static func isVerifiedUser() -> Bool {
let val = (UserDefaults.standard.object(forKey: UserKeys.verified) as? Bool ) ?? false
print("value is")
print(val)
return val
}
static func didSubmitKyc() -> Bool {
let val = (UserDefaults.standard.object(forKey: UserKeys.kyc) as? Bool ) ?? false
print("value is")
print(val)
return val
}

Loading…
Cancel
Save