Manos Chorianopoulos

fix CouponsTableViewCell margin

......@@ -36,7 +36,7 @@ import UIKit
public override func layoutSubviews() {
super.layoutSubviews()
//set the values for top,left,bottom,right margins
let margins = UIEdgeInsets(top: 0, left: 0, bottom: 30, right: 0)
let margins = UIEdgeInsets(top: 0, left: 0, bottom: 8, right: 0)
contentView.frame = contentView.frame.inset(by: margins)
}
......
......@@ -79,7 +79,7 @@ extension CouponsViewController: UITableViewDelegate, UITableViewDataSource{
}
public func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 120.0 + 30.0
return 120.0 + 8.0
// return UITableViewAutomaticDimension
}
......
......@@ -403,7 +403,7 @@ extension WalletViewController: UITableViewDelegate, UITableViewDataSource{
}
public func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 120.0 + 30.0
return 120.0 + 8.0
// return UITableViewAutomaticDimension
}
......