-
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-000] Error Color 추가 및 Matching 화면 스크롤 영역 최하단 32px 여백 추가 #18
Conversation
9dfd46b
to
421e502
Compare
421e502
to
3769056
Compare
3769056
to
2b1e7ca
Compare
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.
태규님! 새해에도 화이팅입니다!! ㅎㅎㅎ 올 한해는 반드시 좋은 일 많으실겁니다
withStyle(style = SpanStyle(color = PieceTheme.colors.subDefault)) { | ||
append("02:32:75") | ||
} | ||
|
||
append(" 남았어요") |
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 : 혹시 이것도 string.xml로 넣을 수 있는건가요?
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.
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.
아하 그렇군요! 그럼 이건 그냥 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.
아하 그렇군요! 그럼 이건 그냥 string으로 써두는게 낫겠죠?!
넵, 일단은 Spannable은 그냥 raw String으로 쓰는걸로 해요!
<string name="check_the_matching_pieces">매칭 조각을 확인해주세요!</string> | ||
<string name="same_value_as_me">나와 같은 가치관</string> | ||
<string name="accept_matching">매칭 수락하기</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.
매칭 모듈에서 리소스를 관리하는게 나을까요??
지금 디자인 시스템에 아이콘이랑 문자열 리소스를 정의해서 사용하고 있는데요. 처음엔 아이콘을 디자인 시스템에 넣어서 중복 파일 생성을 막고 관리도 편하게 하려고 drawable 폴더에 저장했어요. 그런데 문자열은 태규님이 작성해주신 대로 매칭 모듈에서 관리하는 게 더 좋을 것 같아서 시도해봤는데, R.string...
을 호출하면 기본적으로 디자인 시스템의 R
이 고정되어 있어서 매칭 모듈의 R
을 쓰려면 전체 파일 경로를 명시해야 하더라고요.. 허허. 그래서 일단 문자열도 디자인 시스템에 정의해서 다 불러오는 방식으로 사용 중인데, 이게 계속 고민이 되네요.
한 가지 방법으로는 import할 때 as
키워드를 사용해서 디자인 시스템의 R
과 매칭 모듈의 R
을 구분하는 방법이 있는데, 매번 이렇게 하는 것도 좀 귀찮고요. 혹시 더 좋은 방법이 있을까요? 아니면 그냥 매칭 모듈에서 아이콘도 다 관리하는 쪽이 나을까요? 태규님 의견이 궁금합니다!!
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.
매칭 모듈에서 리소스를 관리하는게 나을까요?? 지금 디자인 시스템에 아이콘이랑 문자열 리소스를 정의해서 사용하고 있는데요. 처음엔 아이콘을 디자인 시스템에 넣어서 중복 파일 생성을 막고 관리도 편하게 하려고 drawable 폴더에 저장했어요. 그런데 문자열은 태규님이 작성해주신 대로 매칭 모듈에서 관리하는 게 더 좋을 것 같아서 시도해봤는데,
R.string...
을 호출하면 기본적으로 디자인 시스템의R
이 고정되어 있어서 매칭 모듈의R
을 쓰려면 전체 파일 경로를 명시해야 하더라고요.. 허허. 그래서 일단 문자열도 디자인 시스템에 정의해서 다 불러오는 방식으로 사용 중인데, 이게 계속 고민이 되네요.한 가지 방법으로는 import할 때
as
키워드를 사용해서 디자인 시스템의R
과 매칭 모듈의R
을 구분하는 방법이 있는데, 매번 이렇게 하는 것도 좀 귀찮고요. 혹시 더 좋은 방법이 있을까요? 아니면 그냥 매칭 모듈에서 아이콘도 다 관리하는 쪽이 나을까요? 태규님 의견이 궁금합니다!!
사실 공통적으로 쓰는 리소스가 아니면 각 모듈에 배치하고 쓰는 것이 맞다고 생각하는데,
여러 개의 모듈의 R이 임포트가 되면 사용하기가 매우 번거롭다는 점은 명백히 부정할 수 없는 사실이라,
위 이슈가 해결될 때 까지 designsystem
에 다 리소스를 넣어두고 개발해도 될 것 같다는 생각이 들어요.
진혁님은 어떻게 생각하시나요 ?
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.
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.
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.
넵! 좋아요! 👍 👍
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.
진혁님! 현재 파일 처럼 리소스 이름이 너무 길어지는 것 같아서 주석으로 모듈만 구분하고 앞에 prefix 단어는 빼는 걸로 하는 건 어떨까요?!
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.
넵 좋아요!! 태규님이 상단에 몇 개 작성해두시면 그거에 맞춰서 작성해둘게요!
fc31d75
to
9e9e684
Compare
1. ⭐️ 변경된 내용
2. 🖼️ 스크린샷(선택)