Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feat] 로그인 화면, 메인 화면(탭바) UI 구현 #7

Merged
merged 5 commits into from
Oct 10, 2024

Conversation

noeyiz
Copy link
Collaborator

@noeyiz noeyiz commented Oct 10, 2024

☁️ 개요

로그인 화면과 메인 화면 UI 및 이동 로직을 구현합니다.

💻 작업 내용

  • 로그인 및 메인 탭바 UI 구현 (디자인 적용없이 기본 컴포넌트만을 사용)
로그인 메인
image Simulator Screen Recording - iPhone 13 mini - 2024-10-10 at 19 41 12
  • 앱의 전반적인 흐름을 관리하는 AppCoordinator 구현
class AppCoordinator: Coordinator {
    
    func start() {
        if needsOnboarding() {
            showOnboarding()
        } else {
            showMain()
        }
    }
    
}

🔗 관련 이슈

closes #5

- 소셜 로그인(카카오, 애플, 구글) 버튼 배치
- 각 feature를 담당하는 OnboarindCoordinator, MainCoordinator 구현
- 앱의 전체 흐름을 관리하는 AppCoordinator 구현
@noeyiz noeyiz self-assigned this Oct 10, 2024
@noeyiz noeyiz linked an issue Oct 10, 2024 that may be closed by this pull request
2 tasks
@noeyiz noeyiz merged commit 4ec815e into dev Oct 10, 2024
1 check passed
@noeyiz noeyiz deleted the feature/5-login-main-tab-bar-ui branch October 30, 2024 12:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Feature] 로그인 화면 및 메인 화면(탭바) UI
1 participant