fix(ios): anchor the composer suggestion popup flush above the input - #328
Open
kingbootoshi wants to merge 1 commit into
Open
fix(ios): anchor the composer suggestion popup flush above the input#328kingbootoshi wants to merge 1 commit into
kingbootoshi wants to merge 1 commit into
Conversation
The slash, file, and skill suggestion lists were bottom-anchored onto the composer container, covering the text field the user is typing into. Anchor the popup's bottom edge to the composer's top edge so suggestions float over the transcript and the draft stays visible. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Anchors the composer suggestion popup (slash commands, files, skills) directly above the composer card instead of floating with hardcoded bottom padding, and unifies the slash + skill rows onto one shared row component. Net -5 lines.
Root cause of the old gap: dead
.padding(.bottom, 4 + 56)left over from the previous bottom-anchored design. The popup now derives its position from the composer's own metrics - the visible gap is exactly the entry row's 6pt top padding, and horizontal insets match the card's 10pt inset./and$rows now share identical font, spacing, and padding.Demo
composer-popup-position.mp4
🤖 Generated with Claude Code