[FEATURE] iOS 애플 로그인 및 화면 UI 개선#92
Merged
Merged
Conversation
sunm2n
approved these changes
Jul 8, 2026
sunm2n
left a comment
Contributor
There was a problem hiding this comment.
확인결과 이상 없는거 같습니다! 수고하셨습니다!
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #89
개요
iOS 로그인 화면에 Apple 로그인 버튼을 추가하고, 앱 전환/인증 대기 중 빈 화면처럼 보이던 구간과 일부 화면의 헤더/메뉴 위치/폴더 UI 간격을 정리했습니다.
기존 Google 로그인 흐름을 공통 소셜 로그인 핸들러로 확장해
oauth_google,oauth_apple전략을 provider 기준으로 선택하도록 변경했습니다. Apple 로그인 버튼은 iOS 환경에서만 노출되며, 로그인 진행 중 상태는 provider별 문구로 표시하되 Google/Apple 중복 터치는 함께 방지합니다.또한 인증 로딩이나 회원 동기화 대기 중
null을 반환하던 화면에 공통 로딩 화면을 적용해 앱이 멈춘 것처럼 보이지 않도록 개선했습니다. 링크 추가/폴더 생성/URL 선택 계열 화면은 기본 Stack header 대신 앱 톤에 맞는 공통ScreenHeader를 사용하도록 정리했습니다.주요 구현 내용
handleSocialLogin으로 정리ScreenHeader적용파일별 역할
app/(auth)/login.tsxapp/(auth)/_layout.tsx,app/index.tsx,app/(tabs)/_layout.tsxAppLoadingScreen표시components/ui/app-loading-screen.tsxcomponents/ui/screen-header.tsxapp/(tabs)/(home)/add-link.tsxSafeAreaView및 공통 헤더 적용app/(tabs)/(folder)/folder-name.tsxapp/(tabs)/(folder)/folder-url-select.tsxapp/(tabs)/(folder)/folder-add-url.tsxcomponents/ui/card-link.tsx,components/ui/folder-card.tsxcomponents/ui/folder-context-menu.tsxcomponents/ui/filter-chip.tsxapp/(tabs)/(folder)/index.tsx,constants/theme.ts해결한 이슈 목록
SocialLoginButton흐름에 연결체크 사항
git diff --check origin/dev..HEAD통과npx tsc --noEmit통과npm run lint통과참고사항
SocialLoginButton의 Apple provider 스타일은 기존 컴포넌트 흐름을 재사용했습니다.Platform.OS === 'ios'조건에서만 표시됩니다.Screenshots or Video