콘텐츠 보기 설정

- UI 설정
This commit is contained in:
Yu Sung
2024-10-11 12:03:17 +09:00
parent 5d412eddbb
commit a2b8a105fe
11 changed files with 217 additions and 1 deletions

View File

@@ -14,7 +14,11 @@ struct ContentView: View {
ZStack {
Color.black.ignoresSafeArea()
MainView()
if appState.isChangeAdultContentVisible {
EmptyView()
} else {
MainView()
}
switch appState.appStep {
case .splash:
@@ -59,6 +63,9 @@ struct ContentView: View {
case .notificationSettings:
NotificationSettingsView()
case .contentViewSettings:
ContentSettingsView()
case .signOut:
SignOutView()