Add room action bar to access info/threads/etc about a room#845
Draft
kevinaboos wants to merge 1 commit intoproject-robius:mainfrom
Draft
Add room action bar to access info/threads/etc about a room#845kevinaboos wants to merge 1 commit intoproject-robius:mainfrom
kevinaboos wants to merge 1 commit intoproject-robius:mainfrom
Conversation
Introduces a `RoomActionBar` widget that replaces each room screen's header content with four action buttons (search, threads, members, room info) alongside the back button and room name. The bar responsively picks one of three layouts based on available width: 1. All inline — back + full room name + four action buttons fit on a single row; no chevron is shown. 2. Expand-only — full name fits but all four buttons don't; a trailing chevron toggles a second row that reveals the buttons. 3. Ellipsized — even the full name doesn't fit; the label truncates with `…` while the chevron + second row still reveal the buttons. Each state's transitions animate the bar's height between 45 and 90 px. Desktop mounts the bar inside a `Fit`-height wrapper above each room's timeline; mobile replaces the StackNavigationView header's content with the bar, grows the header from 45 to 90 px when expanded, and keeps the stack nav body's top margin in step so the message list tracks the header's bottom edge. Invite and space-lobby views share the widget but hide the action buttons (only back + title remain). Every button currently surfaces a "not yet implemented" popup; the four features behind them (search, threads list, members list, room info) will be wired up separately. Co-Authored-By: Claude Opus 4.7 (1M context) <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.
WIP