// // SignOutView.swift // SodaLive // // Created by klaus on 2023/08/10. // import SwiftUI struct SignOutView: View { @StateObject var viewModel = SignOutViewModel() var body: some View { BaseView(isLoading: $viewModel.isLoading) { VStack(spacing: 0) { DetailNavigationBar(title: I18n.Settings.SignOut.title) ScrollView(.vertical, showsIndicators: false) { VStack(spacing: 0) { VStack(spacing: 13.3) { Text(I18n.Settings.SignOut.headline) .appFont(size: 20, weight: .bold) .foregroundColor(Color(hex: "3bb9f1")) .frame(width: screenSize().width - 26.7, alignment: .leading) Text(I18n.Settings.SignOut.reasonGuide) .appFont(size: 13.3, weight: .medium) .foregroundColor(Color(hex: "eeeeee")) .frame(width: screenSize().width - 26.7, alignment: .leading) VStack(alignment: .leading, spacing: 16.7) { ForEach(0..