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