Reorder bottom navigation tabs to canonical order#1851
Merged
Conversation
3 tasks
… to Map Tab order changed from: Messages, Connect, Nodes, Mesh Map, Settings to canonical order: Messages, Nodes, Map, Settings, Connect - Reordered both iOS 18+ (Tab API) and legacy (tabItem API) paths - Renamed "Mesh Map" tab label to "Map" for cross-platform consistency - Updated NavigationState.Tab enum case ordering - Updated deep-links documentation headings Agent-Logs-Url: https://github.com/meshtastic/Meshtastic-Apple/sessions/5f19d3ad-9e6e-4e3e-82eb-5a83def003f6 Co-authored-by: garthvh <1795163+garthvh@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Reorder bottom navigation tabs to canonical order
Reorder bottom navigation tabs to canonical order
May 20, 2026
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 changed?
Reordered bottom tab bar from
Messages, Connect, Nodes, Mesh Map, Settingsto the canonical cross-platform order:Messages, Nodes, Map, Settings, Connect. Renamed "Mesh Map" tab label to "Map".ContentView.swift— Reordered tabs in both iOS 18+ (TabAPI) and legacy (tabItemAPI) code pathsNavigationState.swift— ReorderedTabenum cases to matchdocs/developer/deep-links.md+ generated HTML — Renamed section headingWhy did it change?
Aligns with the Menu Alignment Audit canonical tab order. Messages first (primary use-case), Connect last (infrequent after initial pairing), "Map" label standardised across platforms.
How is this tested?
Tab routing is value-based (enum matching), not position-dependent — reordering has no effect on deep links or state restoration. Existing
RouterDeepLinkTestsandNavigationStateTestscontinue to pass without modification.Screenshots/Videos (when applicable)
N/A — no CI simulator available; tab order change is declarative SwiftUI reordering.
Checklist
docs/user/ordocs/developer/, and updated accordingly (see copilot-instructions.md for the view → doc page mapping). If no doc update is needed, add theskip-docs-checklabel.