fix(creator): 커뮤니티 반응 순서를 조정한다

This commit is contained in:
Yu Sung
2026-07-12 08:33:13 +09:00
parent 47fe0e787d
commit eaed309a1d
14 changed files with 86 additions and 54 deletions

View File

@@ -188,6 +188,19 @@ struct CommunityPostCard: View {
private var reactionBar: some View {
HStack(spacing: 15) {
Button(action: onTapComment) {
HStack(spacing: SodaSpacing.s4) {
Image("ic_feed_community_reply")
.resizable()
.frame(width: 18, height: 18)
Text("\(commentCount)")
.appFont(.body2)
.foregroundColor(Color.gray400)
}
}
.buttonStyle(.plain)
Button {
toggleLike()
} label: {
@@ -202,19 +215,6 @@ struct CommunityPostCard: View {
}
}
.buttonStyle(.plain)
Button(action: onTapComment) {
HStack(spacing: SodaSpacing.s4) {
Image("ic_feed_community_reply")
.resizable()
.frame(width: 18, height: 18)
Text("\(commentCount)")
.appFont(.body2)
.foregroundColor(Color.gray400)
}
}
.buttonStyle(.plain)
}
.frame(height: 24)
}