라이브

- 공유하기 버튼 제거
This commit is contained in:
Yu Sung
2024-05-02 15:20:53 +09:00
parent 1bf4e59eed
commit 250f169b42
4 changed files with 0 additions and 68 deletions

View File

@@ -30,7 +30,6 @@ struct LiveRoomInfoGuestView: View {
let onClickQuit: () -> Void
let onClickToggleBg: () -> Void
let onClickShare: () -> Void
let onClickFollow: (Bool) -> Void
let onClickProfile: (Int) -> Void
let onClickNotice: () -> Void
@@ -86,13 +85,6 @@ struct LiveRoomInfoGuestView: View {
strokeWidth: 1,
strokeCornerRadius: 5.3
) { onClickToggleBg() }
LiveRoomOverlayStrokeImageButton(
imageName: "ic_share",
strokeColor: Color.graybb,
strokeWidth: 1,
strokeCornerRadius: 5.3
) { onClickShare() }
}
HStack(spacing: 8) {
@@ -226,7 +218,6 @@ struct LiveRoomInfoGuestView_Previews: PreviewProvider {
isAdult: false,
onClickQuit: {},
onClickToggleBg: {},
onClickShare: {},
onClickFollow: { _ in },
onClickProfile: { _ in },
onClickNotice: {},

View File

@@ -31,7 +31,6 @@ struct LiveRoomInfoHostView: View {
let onClickQuit: () -> Void
let onClickToggleBg: () -> Void
let onClickShare: () -> Void
let onClickEdit: () -> Void
let onClickProfile: (Int) -> Void
let onClickNotice: () -> Void
@@ -78,13 +77,6 @@ struct LiveRoomInfoHostView: View {
strokeCornerRadius: 5.3
) { onClickToggleBg() }
LiveRoomOverlayStrokeImageButton(
imageName: "ic_share",
strokeColor: Color.graybb,
strokeWidth: 1,
strokeCornerRadius: 5.3
) { onClickShare() }
LiveRoomOverlayStrokeImageButton(
imageName: "ic_edit",
strokeColor: Color.graybb,
@@ -241,7 +233,6 @@ struct LiveRoomInfoHostView_Previews: PreviewProvider {
isAdult: false,
onClickQuit: {},
onClickToggleBg: {},
onClickShare: {},
onClickEdit: {},
onClickProfile: { _ in },
onClickNotice: {},