BreadcrumbItem

data class BreadcrumbItem(val path: String, val text: String? = null)

A single segment in a BreadcrumbBar. Each item carries a path segment used to reconstruct the full path, and an optional text for display. When text is null, path is shown.

Parameters

path

The path segment, used by joinToPath to reconstruct the full path.

text

The display text. If null, path is used for display.

Constructors

Link copied to clipboard
constructor(path: String, text: String? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val text: String?