Post

Dev Dictionary: Breadcrumb Navigation

Breadcrumb navigation is the trail of screen titles showing your path through an app, named after the Hansel and Gretel fairy tale.

Dev Dictionary: Breadcrumb Navigation

A breadcrumb in UI is the trail of navigation titles showing where you’ve been.

The Concept

Breadcrumb navigation displays the full path of screens a user has traversed:

1
Home > Settings > Account > Details

Each label represents a step in the navigation history. Users can jump back to any point rather than tapping back one screen at a time.

Origin

The name comes from the fairy tale Hansel and Gretel — the children dropped breadcrumbs along the forest path so they could retrace their steps back home. In UI design, it’s the same idea: a trail marking each step you took.

On iOS

iOS implements breadcrumb navigation through the back button long-press menu. Long-press the back button in any UINavigationController stack to see the full list of previous screens.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import SwiftUI

NavigationStack {
    NavigationLink("Settings") {
        NavigationLink("Account") {
            NavigationLink("Details") {
                Text("You are here")
            }
            .navigationTitle("Details")
        }
        .navigationTitle("Account")
    }
    .navigationTitle("Settings")
    .navigationTitle("Home")
}

Long-pressing the back button on the “Details” screen reveals:

  • Account
  • Settings
  • Home

This feature was introduced in iOS 14 and works automatically with UINavigationController and NavigationStack.

Web vs Mobile

PlatformBreadcrumb Style
WebVisible text trail (Home > Settings > Account)
iOSHidden behind long-press back button
AndroidNot natively supported (varies by app)

Key Takeaway

  • Web breadcrumbs are always visible as a horizontal trail
  • iOS breadcrumbs are discoverable through the back button long-press gesture
  • Both serve the same purpose: letting users jump to any previous point in their navigation path

☕ Support My Work

If you found this post helpful and want to support more content like this, you can buy me a coffee!

Your support helps me continue creating useful articles and tips for fellow developers. Thank you! 🙏

This post is licensed under CC BY 4.0 by the author.