Skip to content

Commit

Permalink
[FIX] stack제거(#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
kimscastle committed Oct 31, 2024
1 parent a36e4c1 commit ffffba5
Showing 1 changed file with 11 additions and 14 deletions.
25 changes: 11 additions & 14 deletions Genti_iOS/Genti_iOS/Presentation/Home/View/FeedComponent.swift
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,18 @@ struct FeedComponent: View {
}
private func photoDescriptionView() -> some View {
VStack(spacing: 10) {
HStack {
Text("사진 설명")
.pretendard(.body_14_medium)
.foregroundStyle(.white.opacity(0.4))

Spacer()
}

HStack {
Text(description)
.multilineTextAlignment(.leading)
.pretendard(.body_14_medium)
.foregroundStyle(.white.opacity(0.8))
Spacer()
}
Text("사진 설명")
.pretendard(.body_14_medium)
.foregroundStyle(.white.opacity(0.4))
.frame(maxWidth: .infinity, alignment: .leading)

Text(description)
.multilineTextAlignment(.leading)
.pretendard(.body_14_medium)
.foregroundStyle(.white.opacity(0.8))
.frame(maxWidth: .infinity, alignment: .leading)


}
.padding(16)
Expand Down

0 comments on commit ffffba5

Please sign in to comment.