diff --git a/SodaLive/Sources/Chat/Talk/TalkView.swift b/SodaLive/Sources/Chat/Talk/TalkView.swift index d44c2e5..b792840 100644 --- a/SodaLive/Sources/Chat/Talk/TalkView.swift +++ b/SodaLive/Sources/Chat/Talk/TalkView.swift @@ -13,13 +13,18 @@ struct TalkView: View { var body: some View { BaseView(isLoading: $viewModel.isLoading) { - if viewModel.talkRooms.isEmpty { - Text(I18n.Chat.Talk.emptyMessage) - .appFont(size: 20, weight: .regular) - .foregroundColor(.white) - } else { - ScrollView(.vertical, showsIndicators: false) { - LazyVStack(spacing: 24) { + ScrollView(.vertical, showsIndicators: false) { + LazyVStack(spacing: 24) { + YandexInlineBannerView( + placement: .chatTalkTabTop, + horizontalPadding: 24 + ) + + if viewModel.talkRooms.isEmpty { + Text(I18n.Chat.Talk.emptyMessage) + .appFont(size: 20, weight: .regular) + .foregroundColor(.white) + } else { ForEach(0..