diff --git a/SodaLive/Sources/Live/Room/LiveRoomView.swift b/SodaLive/Sources/Live/Room/LiveRoomView.swift index 8cf3ff2..c84319d 100644 --- a/SodaLive/Sources/Live/Room/LiveRoomView.swift +++ b/SodaLive/Sources/Live/Room/LiveRoomView.swift @@ -32,7 +32,7 @@ struct LiveRoomView: View { Color.black.edgesIgnoringSafeArea(.all) VStack(spacing: 0) { - VStack(alignment: .leading, spacing: 0) { + LazyVStack(alignment: .leading, spacing: 0) { HStack(spacing: 6.7) { Text( UserDefaults.int(forKey: .userId) == viewModel.liveRoomInfo?.creatorId ? @@ -276,8 +276,8 @@ struct LiveRoomView: View { ZStack(alignment: .top) { ScrollViewReader { proxy in ZStack(alignment: .bottomTrailing) { - if let liveRoomInfo = viewModel.liveRoomInfo, viewModel.isBgOn { - GeometryReader { proxy in + GeometryReader { proxy in + if let liveRoomInfo = viewModel.liveRoomInfo, viewModel.isBgOn { KFImage(URL(string: liveRoomInfo.coverImageUrl)) .resizable() .scaledToFill()