-
Notifications
You must be signed in to change notification settings - Fork 0
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
[PC-566] 프로필 미리보기 화면 ui 구현 #64
Conversation
아 그리고 사진 보기에서 매칭 수락하기 버튼은 미리보기에선 안보이게 처리해뒀어요! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
진혁님 고생하셨습니다~~
저도 지금 내 프로필 API쪽 곧 PR올라갈거에요!!
거의 막바지네요 음하하하~~ 빠야~~
if (isApproveButtonEnabled) { | ||
PieceRoundingSolidButton( | ||
label = buttonLabel, | ||
onClick = onApproveClick, | ||
modifier = Modifier | ||
.align(Alignment.BottomCenter) | ||
.padding(bottom = 10.dp), | ||
) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
p2)
enabled라는 속성은 버튼 내에서 실제로 있는 속성이니까
가시성 여부는 isShow 같은 걸로 바꾸면 좋을 것 같습니다~
activityRegion: String, | ||
occupation: String, | ||
smokeStatue: String, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
p3)
이거 제가 지금 작업하고 있는 것에서도 다 바꾸고 있는데,
새로 작성된 코드중에서
ActivityRegion -> location,
occupation -> job,
smokeStatue -> somokeStatus
로 바꿔주세요! API에서 그렇게 내려주고 있어서 context를 비슷하게 가져가려고요~
1. ⭐️ 변경된 내용
프로필 미리보기 화면 ui 구현
2. 🖼️ 스크린샷(선택)
KakaoTalk_20250212_024438697.mp4
3. 💡 알게된 부분
4. 📌 이 부분은 꼭 봐주세요!
그 State에 MyProfile클래스가 없어서 일단 OpponentProfile 클래스를 사용했는데, 개발하시다가 MyProfile 클래스가 생기면 그때 변경해두겠습니다!