메시지 - 리스트, 쓰기, 상세 페이지 추가

This commit is contained in:
Yu Sung
2023-08-10 15:21:08 +09:00
parent 943e1d9f7f
commit 80ff04f825
36 changed files with 2969 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
//
// MessageViewModel.swift
// SodaLive
//
// Created by klaus on 2023/08/10.
//
import Foundation
final class MessageViewModel: ObservableObject {
enum CurrentTab: String {
case text, voice
}
@Published var currentTab: CurrentTab = .text
}