-
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-602] 심사 거절 다이얼로그 ui 구현 #68
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.
진혁님 고생하셨습니다~~~
이제 진짜 별로 안남았다...
title: AnnotatedString, | ||
subText: String, | ||
@DrawableRes iconId: Int, | ||
title: 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.
AnnotatedString의 부모 Class에 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.
AnnotatedString이 내부가
class AnnotatedString internal constructor(
val text: String,
internal val spanStylesOrNull: List<Range<SpanStyle>>? = null,
internal val paragraphStylesOrNull: List<Range<ParagraphStyle>>? = null,
internal val annotations: List<Range<out Any>>? = null
) : CharSequence {
으로 되어 있어서 String을 부모 클래스로 가지고 있진 않는거 같아요... 그냥 String과 같은 CharSequence를 상속한 거 같은데... 제가 AnnotatedString이었던걸 바꾼 이유는 처음엔 text는 한 색상만 쓰고 subText가 글자색상이 변하는 부분이 있어서 text를 String 으로 바꾸고, subText는 AnnotateString을 적용했었는데, 여러 코드로 수정하다보니 String 그대로 두고 다시 원래대로 변경해두지 않았던 거 같아요... 다시 변경해둘까요?!
1. ⭐️ 변경된 내용
-심사 거절 다이얼로그 ui 구현
-프로필 완성 navigation 연결
2. 🖼️ 스크린샷(선택)
3. 💡 알게된 부분
4. 📌 이 부분은 꼭 봐주세요!