Skip to content

Commit

Permalink
fix: memeItemView spacing 수정 (#62)
Browse files Browse the repository at this point in the history
fix: memeItemView spacing 수정 (#62)
  • Loading branch information
hryeong66 committed Aug 8, 2024
1 parent 10f032b commit d84830b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,12 @@ public struct MemeItemView: View {
}

public var body: some View {
VStack {
VStack(spacing: 10) {
MemeItemViewWithButton(memeDetail: memeDetail, memeCopyHandler: memeCopyHandler)
.onTapGesture {
memeClickHandler?(memeDetail)
}
MemeItemInfoView(memeName: memeDetail.title, reaction: memeDetail.reaction)
.padding(.top, 10)
}
}
}
Expand Down Expand Up @@ -119,10 +118,11 @@ struct MemeItemInfoView: View {
}
Spacer()
}
.padding(.horizontal, 4)
}

var memeReactionView: some View {
HStack {
HStack(spacing: 4) {
Text("ㅋㅋ")
.font(Font.Family2.xlarge)
Text("\(reaction)")
Expand Down
2 changes: 1 addition & 1 deletion Projects/Features/MyPage/Sources/MyPageView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public struct MyPageView: View {
viewModel.dispatch(type: .onAppearLastMeme)
}
)
Spacer(minLength: 80)
Spacer(minLength: 100)
}
.onAppear {
viewModel.dispatch(type: .onAppearMyPageView)
Expand Down

0 comments on commit d84830b

Please sign in to comment.