-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ :: [#48] Add AuthViewModel SignIn Feature
- Loading branch information
Showing
6 changed files
with
211 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,3 @@ struct ExpoApp: App { | |
} | ||
} | ||
} | ||
|
9 changes: 0 additions & 9 deletions
9
Projects/App/Sources/Feature/EventFeature/Sources/EventCheckView.swift
This file was deleted.
Oops, something went wrong.
23 changes: 23 additions & 0 deletions
23
Projects/App/Sources/Feature/PostDetailFeature/Sources/PostDetailView.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// | ||
// PostDetailView.swift | ||
// Expo-iOS | ||
// | ||
// Created by 서지완 on 11/6/24. | ||
// Copyright © 2024 SchoolofCompany. All rights reserved. | ||
// | ||
|
||
import SwiftUI | ||
|
||
struct PostDetailView: View { | ||
var body: some View { | ||
VStack(spacing: 0) { | ||
ExpoIOSAsset.Assets.leftBackButton.swiftUIImage | ||
|
||
Spacer() | ||
} | ||
} | ||
} | ||
|
||
#Preview { | ||
PostDetailView() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.