feat: 팔로워 리스트

- 프로필 이미지를 터치하면 프로필 다이얼로그 표시
This commit is contained in:
Yu Sung
2025-06-13 19:56:44 +09:00
parent 24c97dbe51
commit a815bcfbf4
4 changed files with 30 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ struct MemberProfileDialog: View {
@Binding var isShowing: Bool
let memberId: Int
var onBlockComplete: () -> Void = {}
var body: some View {
ZStack {
@@ -147,6 +148,7 @@ struct MemberProfileDialog: View {
nickname: viewModel.nickname,
confirmAction: {
viewModel.memberBlock()
onBlockComplete()
}
)
}