// // TalkView.swift // SodaLive // // Created by klaus on 8/29/25. // import SwiftUI struct TalkView: View { @StateObject var viewModel = TalkViewModel() 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) { ForEach(0..