-
Notifications
You must be signed in to change notification settings - Fork 0
SajuCard 글자 크기 폭에 비례하도록 수정 #150
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
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
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.
🎯 Functional Correctness | 🟠 Major | 🏗️ Heavy lift
🧩 Analysis chain
🏁 Script executed:
Repository: YAPP-Github/28th-App-Team-2-Android
Length of output: 8181
🏁 Script executed:
Repository: YAPP-Github/28th-App-Team-2-Android
Length of output: 8322
🏁 Script executed:
Repository: YAPP-Github/28th-App-Team-2-Android
Length of output: 820
🌐 Web query:
AndroidX Compose Arrangement.spacedBy negative space official documentation💡 Result:
Yes, using a negative value in AndroidX Compose's Arrangement.spacedBy is an officially supported use case [1][2]. According to the official Android documentation, passing a negative value to Arrangement.spacedBy causes the children within the layout (such as Row or Column) to overlap [3][4]. This works because the negative spacing is subtracted from the available space that the children can occupy [3][5]. Key points regarding this functionality: - Supported layouts: It is supported across standard layouts as well as Lazy lists and grids [1][2]. - Effect: The items will overlap by the specified negative distance [3][4]. - Implementation: You can use it as shown in the following example: Row(horizontalArrangement = Arrangement.spacedBy(-20.dp)) {... } [6] This capability allows for stacking effects or custom overlapping UI patterns [1][2].
Citations:
[P1] 음수
lineGap으로 텍스트가 겹치지 않도록 수정하세요.48dp 카드에서
availableHeight는 36dp이고contentHeight는 39dp이므로lineGap은 -3dp입니다. 32dp 카드에서는 -6dp이며, 시스템 글자 크기가 커지면 겹침이 더 커집니다. 글자 크기를 가용 높이에 맞춘 뒤lineGap을 0dp 이상으로 계산하세요.🤖 Prompt for AI Agents
Source: Path instructions