-
Notifications
You must be signed in to change notification settings - Fork 0
[Fix] review v2 UI 수정사항 반영 #430
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 all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
7ca6b6d
chore: 엄지척 아이콘 사이즈 12.dp
HI-JIN2 07629ec
chore: 오늘의 메뉴 옆 아이콘 크기 조정
HI-JIN2 2bafaf9
chore: 리뷰관리 점3개버튼과 작성일 끝점 맞춤
HI-JIN2 d27bbd7
chore: 리뷰관리 점3개버튼과 작성일 끝점 맞춤
HI-JIN2 52b9e72
Merge remote-tracking branch 'origin/fix/review-v2-ui' into fix/revie…
HI-JIN2 b0225bf
chore: 리뷰관리 점3개버튼과 작성일 끝점 맞춤
HI-JIN2 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
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.
터치 영역을 확장하기 위해
padding과offset을 조합하여 사용하는 방식은 코드를 이해하기 어렵게 만들고, 의도치 않은 레이아웃 문제를 발생시킬 수 있습니다. 특히offset(x = 18.dp, y = 18.dp)는 아이콘을 오른쪽 아래로 이동시켜, 주석// 시각 위치 되돌리기의 의도와 다르게 동작할 가능성이 높습니다.더 명확하고 관용적인 방법은
Box에size를 직접 지정하여 터치 영역을 설정하고,contentAlignment를 사용하여 아이콘을 중앙에 배치하는 것입니다. 이 방법은 가독성이 좋고 코드를 유지보수하기 쉽습니다.