feat(web): responsive desktop UX — NavigationRail + wider grids#56
Merged
Conversation
…g screens Make the app feel native on desktop/web (and iPad landscape) instead of showing a phone bottom-bar on a wide window. - Wide viewports (>=900px) get a side NavigationRail; phones keep the bottom nav. Both drive the same destinations list, so the web-hidden Offline tab is consistent across them. - gridCrossAxisCount scales with width (4 cols >=1150px, 5 >=1500px) instead of capping at 3, so library/discover grids use wide space. analyze clean, 156 tests pass, flutter build web succeeds. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
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.
What
Desktop/web UX polish so the app feels native on a wide window (and iPad landscape) instead of showing a phone bottom-bar.
NavigationRail; phones keep the bottom nav. Both are driven by the same destinations list, so the web-hidden Offline tab stays consistent.gridCrossAxisCountscales with width — 4 columns ≥1150px, 5 ≥1500px (was capped at 3) — so the Library/Discover grids use the extra space.Verification
flutter analyze --fatal-infos --fatal-warnings→ No issues;flutter test→ 156 passed;flutter build web→ succeeds. (The rail renders for authenticated tabs, so it's viewable once the bundle is served from the backend — verified here by build + tests.)🤖 Generated with Claude Code