// // TextMessageView.swift // SodaLive // // Created by klaus on 2023/08/10. // import SwiftUI struct TextMessageView: View { @StateObject var viewModel = TextMessageViewModel() var body: some View { BaseView(isLoading: $viewModel.isLoading) { ZStack(alignment: .bottomTrailing) { VStack(spacing: 13.3) { MessageFilterTabView(currentFilterTab: $viewModel.currentFilter) .padding(.top, 20) ScrollView(.vertical, showsIndicators: false) { if viewModel.items.count > 0 { LazyVStack(spacing: 26.7) { ForEach(0..