-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currency formatting issue fixed and Add Transfer Icon Fix(Ticket 331 and 507) #303
Conversation
@@ -89,7 +89,7 @@ extension TransferDestinationCell { | |||
if !UIFont.isLargeSizeCategory { | |||
let icon = UIImage.fontIcon(hyperwalletIcon.rawValue, | |||
Theme.Icon.frame, | |||
CGFloat(Theme.Icon.size), | |||
CGFloat(20), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dont use hardcoded value. Create something like Theme.addIcon.size
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added constant
if selectTransferMethodCoordinator == nil { | ||
tableViewCell.accessoryType = .none | ||
} | ||
tableViewCell.accessoryType = .none |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this changed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To hide the arrow mark next to Add Transfer Method title.
No description provided.