Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Breadcrumb Bar #878

Closed
bdlukaa opened this issue Jul 7, 2023 · 0 comments · Fixed by #886
Closed

Implement Breadcrumb Bar #878

bdlukaa opened this issue Jul 7, 2023 · 0 comments · Fixed by #886
Labels
enhancement New feature or request

Comments

@bdlukaa
Copy link
Owner

bdlukaa commented Jul 7, 2023

A BreadcrumbBar provides the direct path of pages or folders to the current location. It is often used for situations where the user's navigation trail (in a file system or menu system) needs to be persistently visible and the user may need to go back to a previous location.

Here's an example of a default breadcrumb bar:
BreadcrumbBar example

Here's an example of a breadcrumb bar that overflows the available space:
image

Implementation model

BreadcrumbBar(
  crumbs: [
    Crumb(label: const Text('Item'), value: 1),
  ],
  onCrumbSelected: (crumb) {
    ...
  },
),

Additional context

@bdlukaa bdlukaa added the enhancement New feature or request label Jul 7, 2023
@bdlukaa bdlukaa mentioned this issue Jul 14, 2023
3 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant