Browse Source

kftc menu hidden

pull/1/head
ccr 6 years ago
parent
commit
e0c5d031f7
  1. 5
      GMERemittance/SideMenu/SideMenuViewController.swift

5
GMERemittance/SideMenu/SideMenuViewController.swift

@ -70,7 +70,8 @@ class SideMenuViewController: UIViewController {
let shouldShowWithdrawButton = Utility.pennyTestVerified() && Utility.isVerifiedUser()
self.withdrawButton.isHidden = !shouldShowWithdrawButton
self.manageAccountStackView.isHidden = !shouldShowWithdrawButton
// self.manageAccountStackView.isHidden = !shouldShowWithdrawButton
self.manageAccountStackView.isHidden = true
self.view.backgroundColor = AppConstants.themeRedColor
self.roundedBgView.layer.cornerRadius = 20
self.labelBalance.text = "0"
@ -83,7 +84,7 @@ class SideMenuViewController: UIViewController {
self.labelBalance.text = balance
let shouldShowWithdrawButton = Utility.pennyTestVerified() && Utility.isVerifiedUser()
self.withdrawButton.isHidden = !shouldShowWithdrawButton
self.manageAccountStackView.isHidden = !shouldShowWithdrawButton
// self.manageAccountStackView.isHidden = !shouldShowWithdrawButton
}

Loading…
Cancel
Save