[CM-903] Updated catalogdisplayView layout

This commit is contained in:
PanchamiShenoy 2022-10-06 18:24:56 +05:30 committed by Mark Pospesel
parent 174bd7ed3e
commit 4d8b7ec054
1 changed files with 6 additions and 3 deletions

View File

@ -51,9 +51,9 @@ final public class CatalogDisplayView<View: ContentView>: UIView {
static func margin(for edge: Edge) -> CGFloat { static func margin(for edge: Edge) -> CGFloat {
switch edge { switch edge {
case .leading, .top: case .leading, .top:
return 10 return 16
case .trailing, .bottom: case .trailing, .bottom:
return -10 return -16
} }
} }
} }
@ -66,7 +66,7 @@ final public class CatalogDisplayView<View: ContentView>: UIView {
private let titleLabel: UILabel = { private let titleLabel: UILabel = {
let label = UILabel() let label = UILabel()
label.font = UIFont.preferredFont(forTextStyle: .headline) label.font = UIFont.preferredFont(forTextStyle: .body)
label.textColor = UIColor.label label.textColor = UIColor.label
return label return label
@ -126,6 +126,9 @@ final public class CatalogDisplayView<View: ContentView>: UIView {
outerStackView.addArrangedSubview(innerStackView) outerStackView.addArrangedSubview(innerStackView)
outerStackView.addArrangedSubview(displayView) outerStackView.addArrangedSubview(displayView)
innerStackView.spacing = 4
outerStackView.spacing = 8
self.addSubview(outerStackView) self.addSubview(outerStackView)