-
Notifications
You must be signed in to change notification settings - Fork 0
[QA] 연락처 주기 설정 바텀시트 날짜 형식 수정 #61
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
Merged
Merged
Changes from 13 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
02ef857
refactor: 연락처에서 불러오기 그림자 효과 수치값 수정
stopstone 4479c49
refactor: CycleSettingBottomSheet 주기설정 공백 추가
stopstone 119e70c
feat: 주기 설정 바텀 시트 텍스트 동적 변경
stopstone 00e427c
refactor: 연락 주기 설정 화면 '다음 주기' 텍스트 strings.xml 관리
stopstone 3160c32
refactor: 연락 주기 화면 UI 패딩값 수정
stopstone 5d6b6dd
refactor: 검색 아이콘 색상 변경
stopstone a48bbe4
refactor: 연락처 불러오기 기본 이미지 변경
stopstone 6657de6
feat: 공용 바텀시트 컴포넌트 추가
stopstone a376cf8
refactor: `CycleSettingBottomSheet`을 공통 컴포넌트로 리팩토링
stopstone 576da85
refactor: 주기 설정 BottomSheet 공용 컴포넌트로 분리 및 개선
stopstone 53cc221
fix: 다음 연락 주기 텍스트의 공백 추가
stopstone 72ac684
feat: `NearBottomSheet` 미리보기 추가
stopstone 1162e18
chore: 바텀시트 핸들러 코너 값 수정
stopstone 4e36099
refactor: 주기 설정 BottomSheet 공용 컴포넌트로 분리
stopstone add9b61
refactor: NearBottomSheet의 content 타입을 ColumnScope로 변경
stopstone File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
R.string.friend_contact_cycle_next_cycle_prefix리소스 문자열("다음 주기 : ") 끝에 공백이 포함되어 있습니다. 코드에서+ " "를 사용하여 공백을 추가로 연결하고 있어, 결과적으로 "다음 주기 : "와 같이 두 개의 공백이 생기게 됩니다. 불필요한 공백을 제거하기 위해 코드에서+ " "부분을 삭제하는 것이 좋겠습니다.Uh oh!
There was an error while loading. Please reload this page.
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.
리소스 마지막 공백을 받아오지 못하고 있어 공백을 추가하였습니다
제가 알기론 Android의 XML 리소스 파서는 기본적으로 trailing whitespace(끝 공백)를 제거하여 공백을 별도로 추가했습니다