-
Notifications
You must be signed in to change notification settings - Fork 0
feat: 앱내 전반적인 화면들에 대해 verticalScroll 적용하여 height가 작은 기기들 대응 #130
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
3 commits
Select commit
Hold shift + click to select a range
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
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.
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.
💡 Verification agent
🧩 Analysis chain
verticalScroll 적용은 타당. 다만 내부에서 외부 modifier 재사용 지양 + AppBar 스크롤 여부 확인 필요
modifier = modifier를 재사용하면 상위에서 전달된 semantics/testTag/클릭 영역 등이 두 번 적용될 수 있습니다. 내부 노드에는Modifier를 사용하세요.권장 수정:
만약 AppBar를 고정하려면(대안 예시):
Length of output: 1167
🏁 Script executed:
Length of output: 349
🏁 Script executed:
Length of output: 39
🏁 Script executed:
Length of output: 262
🏁 Script executed:
Length of output: 306
🏁 Script executed:
Length of output: 34
🏁 Script executed:
Length of output: 319
🏁 Script executed:
Length of output: 1072
🏁 Script executed:
Length of output: 157
수정 요청: Column modifier 재사용 제거, AppBar 스크롤 의도 확인 및 접근성 문자열 리소스 추가
다음 사항을 반영해 주세요.
modifier를 그대로 재사용할 경우 semantics/testTag/클릭 처리 등이 중복 적용될 수 있습니다. 내부 레이아웃에는Modifier를 사용해 주세요.ReedTopAppBar가 스크롤 시 사라지는데, UX 의도가 맞는지 확인 부탁드립니다. AppBar를 고정하고 싶다면Scaffold의topBar슬롯으로 옮기는 것이 안전합니다.startIconDescription에 하드코딩된"Close Icon"대신 string 리소스를 사용하세요. 현재review_detail_close_icon_desc가 정의되어 있지 않으므로strings.xml에 리소스 추가가 필요합니다.권장 변경 예시:
feature/detail/src/main/res/values/strings.xml에 아래 리소스를 추가해 주세요:🤖 Prompt for AI Agents