라이브 - 유저 프로필 다이얼로그 의 메시지 보내기 버튼 제거

This commit is contained in:
Yu Sung 2023-11-18 00:49:58 +09:00
parent aa676581d3
commit 16af9dbacd
1 changed files with 0 additions and 19 deletions

View File

@ -113,25 +113,6 @@ struct LiveRoomUserProfileDialogView: View {
.onTapGesture { onClickFollow(userProfile.userId) }
}
}
HStack(spacing: 4) {
Image("ic_message_send")
.resizable()
.frame(width: 18.7, height: 18.7)
Text("메시지 보내기")
.font(.custom(Font.bold.rawValue, size: 12))
.foregroundColor(Color(hex: "ffffff"))
}
.padding(.vertical, 7.3)
.frame(maxWidth: .infinity)
.background(Color(hex: "9970ff"))
.cornerRadius(16.7)
.onTapGesture {
AppState.shared.setAppStep(step: .writeTextMessage(
userId: userProfile.userId,
nickname: userProfile.nickname))
}
}
.fixedSize(horizontal: false, vertical: true)
.padding(.top, 21.3)