feat(mobile): native iOS large-title headers for Inbox & My Issues#4269
Open
voska wants to merge 1 commit into
Open
feat(mobile): native iOS large-title headers for Inbox & My Issues#4269voska wants to merge 1 commit into
voska wants to merge 1 commit into
Conversation
Wrap the Inbox and My Issues tab roots in native Stacks so they render the iOS large-title nav bar (a UINavigationController feature exposed only by react-native-screens' native stack — the JS bottom-tabs header can't do it). - Inbox / My Issues each become a folder: _layout.tsx (native Stack) + index.tsx - Drop the custom flat <Header>; move its actions into the native headerRight - My Issues' scope toolbar rides as the SectionList ListHeaderComponent so the list sits flush under the bar and the title collapses on scroll - Lists opt in via contentInsetAdjustmentBehavior="automatic"
|
@voska is attempting to deploy a commit to the IndexLabs Team on Vercel. A member of the Team first needs to authorize it. |
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 does this PR do?
Gives the Inbox and My Issues tab roots the native iOS large-title navigation bar (the title that sits big at rest and collapses to an inline title on scroll — Mail/Settings/Files style), replacing the custom flat JS header.
headerLargeTitleis aUINavigationControllerfeature exposed only byreact-native-screens' native stack — thereact-navigationbottom-tabs header (JS) can't render it. So each of these two tab roots becomes a nested native Stack.Related Issue
N/A — native-feel polish; no tracking issue.
Closes #
Type of Change
Changes Made
app/(app)/[workspace]/(tabs)/inbox.tsx→inbox/_layout.tsx(nativeStackwithheaderLargeTitle) +inbox/index.tsxapp/(app)/[workspace]/(tabs)/my-issues.tsx→ folder split; the scope toolbar now rides as theSectionListListHeaderComponentso the list sits flush under the bar and the title collapses on scroll<Header>; its action buttons moved into the nativeheaderRightcontentInsetAdjustmentBehavior="automatic"How to Test
Checklist
pnpm typecheckpasses; verified manually in the iOS SimulatorAI Disclosure
AI tool used: Claude Code
Prompt / approach: Researched 2025–2026 React Native native-feel best practices, then converted each list tab root to a nested native Stack to unlock
headerLargeTitle. Verified before/after in the iOS Simulator (driven viaidb).Screenshots
My Issues — before (flat header) / after (large title)

Inbox — before / after
