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/NST-10] #38 회원가입 화면 작성 #39

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Conversation

FpRaArNkK
Copy link
Collaborator

@FpRaArNkK FpRaArNkK commented Feb 25, 2025

🔥 Issue

#38


🔥 변경된 내용

  • 온보딩 화면 중 회원 가입 화면을 작성했습니다
  • 기존 컴포넌트 파일 중 텍스트 필드 관련 컴포넌트를 별도로 분리 이동했습니다
  • UserUseCase를 작성했습니다

🔥 PR Point

  1. 디자인 시스템 변경에 맞춰 AppColorTextField가 수정되었습니다.
    기존 텍스트 사용 방법은 변함 없으나, Rx를 통한 state와 deleteButtonTap 사용에서 일부 변화가 있습니다
    사용법은 아래와 같습니다.
// 사용자의 텍스트필트 X 버튼 탭
        rootView.nameTextField.rx.deleteButtonTapped
            .debounce(.milliseconds(100), scheduler: MainScheduler.instance)
            .map { SignUpReactor.Action.tapNameDeleteButton }
            .bind(to: reactor.action)
            .disposed(by: disposeBag)
            
// State의 이름 텍스트필드 상태 UI 반영
        reactor.state.map { $0.nameTextFieldState }
            .distinctUntilChanged()
            .bind(to: rootView.nameTextField.rx.state)
            .disposed(by: disposeBag)

🔥 ScreenShot


🔥 Reference


@FpRaArNkK FpRaArNkK added the Feat 새로운 기능 구현 label Feb 25, 2025
@FpRaArNkK FpRaArNkK self-assigned this Feb 25, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Feat 새로운 기능 구현
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant