// // HomeAuditionView.swift // SodaLive // // Created by klaus on 7/12/25. // import SwiftUI import Kingfisher struct HomeAuditionView: View { @State private var currentIndex = 0 @State private var timer = Timer.publish(every: 3, on: .main, in: .common).autoconnect() @AppStorage("token") private var token: String = UserDefaults.string(forKey: UserDefaultsKey.token) let items: [GetAuditionListItem] var body: some View { VStack(spacing: 16) { TabView(selection: $currentIndex) { ForEach(0..