From 7841f6888f144c2f165377049f6298d3bd10ff6c Mon Sep 17 00:00:00 2001 From: MaraMincho <103064352+MaraMincho@users.noreply.github.com> Date: Sat, 13 Jan 2024 17:30:34 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20Spacing=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../View/WorkoutHistoryDescriptionView.swift | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/iOS/Projects/Features/WriteBoard/Sources/Presentation/WirteBoardScene/View/WorkoutHistoryDescriptionView.swift b/iOS/Projects/Features/WriteBoard/Sources/Presentation/WirteBoardScene/View/WorkoutHistoryDescriptionView.swift index 8b51e4ef..840e6fee 100644 --- a/iOS/Projects/Features/WriteBoard/Sources/Presentation/WirteBoardScene/View/WorkoutHistoryDescriptionView.swift +++ b/iOS/Projects/Features/WriteBoard/Sources/Presentation/WirteBoardScene/View/WorkoutHistoryDescriptionView.swift @@ -37,6 +37,7 @@ final class WorkoutHistoryDescriptionView: UIStackView { guard let tableCellStackView else { return } + spacing = Constants.inGroupTitleAndContentSpacing addArrangedSubview(tableCellStackView) } @@ -72,12 +73,9 @@ final class WorkoutHistoryDescriptionView: UIStackView { static let time = "시간" static let distance = "거리" - static let cellSpacing: CGFloat = 6 - - static let titleLabelTopSpacing: CGFloat = 6 + static let inGroupTitleAndContentSpacing: CGFloat = 12 - static let titleAndTableTopSpacing: CGFloat = 9 - static let titleAndTableLeadingSpacing: CGFloat = 9 + static let cellSpacing: CGFloat = 6 } }