-
Notifications
You must be signed in to change notification settings - Fork 0
Settings UI based on Design QA #1105
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
5 commits
Select commit
Hold shift + click to select a range
07f6688
#1042 [QA] Update profile nickname text style
yuni-ju c440766
#1057 [refactor] Remove redundant nested Column
yuni-ju 0d847e7
#1057 [fix] Add auto sizing to FilledRoundedCornerButton
yuni-ju 50a946d
#1059 [QA] Update spacing in WithdrawConfirmScreen
yuni-ju 68352df
#1058 [QA] Change check icon
yuni-ju 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,12 @@ | ||
| <vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
| android:width="18dp" | ||
| android:height="13dp" | ||
| android:viewportWidth="18" | ||
| android:viewportHeight="13"> | ||
| android:width="20dp" | ||
| android:height="20dp" | ||
| android:viewportWidth="20" | ||
| android:viewportHeight="20"> | ||
| <path | ||
| android:pathData="M4.58 9.61l3.83 4.64 7-8.5" | ||
| android:strokeWidth="1.5" | ||
| android:strokeColor="#FF23C882" | ||
| android:strokeWidth="2" | ||
| android:pathData="M1 6l5.33 5L17 1"/> | ||
| android:strokeLineCap="round" | ||
| android:strokeLineJoin="round" /> | ||
| </vector> |
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.
🧩 Analysis chain
🏁 Script executed:
Repository: Daily-DAYO/DAYO_Android
Length of output: 1795
🏁 Script executed:
Repository: Daily-DAYO/DAYO_Android
Length of output: 1584
🏁 Script executed:
Repository: Daily-DAYO/DAYO_Android
Length of output: 94
🏁 Script executed:
Repository: Daily-DAYO/DAYO_Android
Length of output: 94
🏁 Script executed:
Repository: Daily-DAYO/DAYO_Android
Length of output: 133
🏁 Script executed:
Repository: Daily-DAYO/DAYO_Android
Length of output: 23974
🏁 Script executed:
Repository: Daily-DAYO/DAYO_Android
Length of output: 8521
🏁 Script executed:
# Read the Button.kt file cat -n presentation/src/main/java/daily/dayo/presentation/view/Button.ktRepository: Daily-DAYO/DAYO_Android
Length of output: 11449
🏁 Script executed:
Repository: Daily-DAYO/DAYO_Android
Length of output: 5830
🏁 Script executed:
Repository: Daily-DAYO/DAYO_Android
Length of output: 1151
TextAutoSize 구현의 안전성을 확보하되, 조용한 텍스트 절단 위험에 주의하세요.
현재 모든
FilledRoundedCornerButton호출처는 테마에서 정의한 스타일(b3, b5 등)을 사용하고 있어fontSize제약은 만족하고 있습니다. 다만TextOverflow.Clip+maxLines=1+softWrap=false조합은 긴 로캘 문자열(특히 한글)이 조용히 잘릴 수 있는 구조입니다.안전성을 강화하기 위해:
maxFontSize에 명시적 하한을 설정하거나, 함수 내에서textStyle.fontSize가 12.sp 이상임을 보증하는 방어 로직을 추가할 것textStyle파라미터 문서에 "명시적 fontSize를 가져야 함" 요구사항을 명기할 것TextOverflow.Ellipsis)로 변경을 검토할 것🤖 Prompt for AI Agents