-
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-434] 가치관 talk ui 구현 #43
base: develop
Are you sure you want to change the base?
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.
ui를 확인해보니까 '프로필 생성' 이랑 '프로필' 이렇게 2개가 있는데, '프로필 생성'의 RegisterProfile이랑 '프로필'의 MainProfile이 같은 profile 모듈에 있는 것 같더라구요. 이거 모듈을 분리해야 될까요??
일단 profile
이라는 모듈 안에 같이 넣어두면 될 것 같습니다!
쓰다가 분리해야할 것 같이 커지면 분해하도록하죠!
++ 추가적으로 디스코드에 디자이너님들이 추가적인 요구사항이 있는 것 같아요!
그 부분 해결해주시고 머지하면 될 것 같습니다~
@@ -129,7 +130,7 @@ fun PieceTextInputLong( | |||
onValueChange = { input -> | |||
limit?.let { if (input.length <= limit) onValueChange(input) } ?: onValueChange(input) | |||
}, | |||
singleLine = true, | |||
singleLine = false, | |||
readOnly = readOnly, | |||
keyboardOptions = KeyboardOptions( | |||
keyboardType = keyboardType, |
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.
👍
1. ⭐️ 변경된 내용
가치관 talk ui 구현
2. 🖼️ 스크린샷(선택)
KakaoTalk_20250129_200805968.mp4
3. 💡 알게된 부분
4. 📌 이 부분은 꼭 봐주세요!
ui를 확인해보니까 '프로필 생성' 이랑 '프로필' 이렇게 2개가 있는데, '프로필 생성'의 RegisterProfile이랑 '프로필'의 MainProfile이 같은 profile 모듈에 있는 것 같더라구요. 이거 모듈을 분리해야 될까요??