{"id":15550029,"url":"https://github.com/outdatedguy/responsive_navigation","last_synced_at":"2025-10-08T23:43:15.974Z","repository":{"id":54350455,"uuid":"522153721","full_name":"OutdatedGuy/responsive_navigation","owner":"OutdatedGuy","description":"Get your awesome app to work on all devices with this responsive navigation library.","archived":false,"fork":false,"pushed_at":"2024-08-01T18:07:30.000Z","size":2003,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-28T19:49:27.079Z","etag":null,"topics":["flutter-package","flutter-ui","navigation","responsive"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/responsive_navigation","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/OutdatedGuy.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["OutdatedGuy"]}},"created_at":"2022-08-07T08:11:33.000Z","updated_at":"2024-08-01T18:07:23.000Z","dependencies_parsed_at":"2025-02-17T13:37:07.699Z","dependency_job_id":null,"html_url":"https://github.com/OutdatedGuy/responsive_navigation","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/OutdatedGuy/responsive_navigation","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OutdatedGuy%2Fresponsive_navigation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OutdatedGuy%2Fresponsive_navigation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OutdatedGuy%2Fresponsive_navigation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OutdatedGuy%2Fresponsive_navigation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OutdatedGuy","download_url":"https://codeload.github.com/OutdatedGuy/responsive_navigation/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OutdatedGuy%2Fresponsive_navigation/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279000727,"owners_count":26082862,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-08T02:00:06.501Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["flutter-package","flutter-ui","navigation","responsive"],"created_at":"2024-10-02T13:47:25.330Z","updated_at":"2025-10-08T23:43:15.960Z","avatar_url":"https://github.com/OutdatedGuy.png","language":"C++","readme":"# Responsive Navigation\n\nA HOLISTIC approach to get your Bleeding Edge flutter app to work on all devices.\n\n[![pub package][package_svg]][package]\n[![GitHub][license_svg]](LICENSE)\n\n[![GitHub issues][issues_svg]][issues]\n[![GitHub issues closed][issues_closed_svg]][issues_closed]\n\n\u003chr /\u003e\n\n| Normal Responsive Navigation      | Navigation Under AppBar            |\n| --------------------------------- | ---------------------------------- |\n| ![Default Nav][normal_responsive] | ![Nav Under AppBar][under_app_bar] |\n\n| For Very large Screens                      | Slim Navigation all the Time                |\n| ------------------------------------------- | ------------------------------------------- |\n| ![Nav on Large screens][very_large_screens] | ![Slim nav on Large screens][slim_nav_rail] |\n\n| Crowded Navigation                  | Scrollable Side Navigation                   |\n| ----------------------------------- | -------------------------------------------- |\n| ![Nav with many items][crowded_nav] | ![Side nav for short height][scrollable_nav] |\n\n## Getting started\n\n#### Add to Dependencies\n\n```yaml\nresponsive_navigation: ^1.1.0\n```\n\n#### Import the package\n\n```dart\nimport 'package:responsive_navigation/responsive_navigation.dart';\n```\n\n## Usage\n\n#### Normal Responsive Navigation\n\n```dart\nResponsiveNav(\n  items: [\n    NavItem(\n      icon: Icon(Icons.home),\n      label: 'Home',\n    ),\n    NavItem(\n      icon: Icon(Icons.search),\n      label: 'Search',\n    ),\n    NavItem(\n      icon: Icon(Icons.settings),\n      label: 'Settings',\n    ),\n  ],\n  child: Scaffold(\n    appBar: AppBar(\n      title: Text('Normal Responsive Navigation'),\n    ),\n    body: Center(\n      child: Text('Hello World'),\n    ),\n  ),\n);\n```\n\n#### Navigation Under AppBar\n\n```dart\nResponsiveNav(\n  items: [\n    NavItem(\n      icon: Icon(Icons.home),\n      label: 'Home',\n    ),\n    NavItem(\n      icon: Icon(Icons.search),\n      label: 'Search',\n    ),\n    NavItem(\n      icon: Icon(Icons.settings),\n      label: 'Settings',\n    ),\n  ],\n  appBar: AppBar(\n    title: Text('Navigation Under AppBar'),\n  ),\n  child: Scaffold(\n    body: Center(\n      child: Text('Hello World'),\n    ),\n  ),\n);\n```\n\n#### Slim Navigation all the Time\n\n```dart\nResponsiveNav(\n  items: [\n    NavItem(\n      icon: Icon(Icons.home),\n      label: 'Home',\n    ),\n    NavItem(\n      icon: Icon(Icons.search),\n      label: 'Search',\n    ),\n    NavItem(\n      icon: Icon(Icons.settings),\n      label: 'Settings',\n    ),\n  ],\n  shouldExtend: false,\n  child: Scaffold(\n    appBar: AppBar(\n      title: Text('Slim Navigation all the Time'),\n    ),\n    body: Center(\n      child: Text('Hello World'),\n    ),\n  ),\n);\n```\n\n#### Crowded Navigation\n\n```dart\nResponsiveNav(\n  items: [\n    NavItem(icon: const Icon(Icons.home), label: 'Home'),\n    NavItem(icon: const Icon(Icons.search), label: 'Search'),\n    NavItem(icon: const Icon(Icons.person), label: 'Account'),\n    NavItem(icon: const Icon(Icons.shopping_cart), label: 'Cart'),\n    NavItem(icon: const Icon(Icons.settings), label: 'Settings'),\n    NavItem(icon: const Icon(Icons.logout), label: 'Logout'),\n    NavItem(icon: const Icon(Icons.help), label: 'Help'),\n  ],\n  child: Scaffold(\n    appBar: AppBar(\n      title: Text('Crowded Navigation'),\n    ),\n    body: Center(\n      child: Text('Hello World'),\n    ),\n  ),\n);\n```\n\n#### Customized Responsive Navigation\n\n```dart\nResponsiveNav(\n  items: [\n    NavItem(icon: const Icon(Icons.home), label: 'Home'),\n    NavItem(icon: const Icon(Icons.search), label: 'Search'),\n    NavItem(icon: const Icon(Icons.person), label: 'Account'),\n    NavItem(icon: const Icon(Icons.shopping_cart), label: 'Cart'),\n    NavItem(icon: const Icon(Icons.settings), label: 'Settings'),\n    NavItem(icon: const Icon(Icons.logout), label: 'Logout'),\n    NavItem(icon: const Icon(Icons.help), label: 'Help'),\n  ],\n  navStyle: NavStyle(\n    elevation: 5,\n    verticalDivider: VerticalDivider(\n      color: Colors.grey.shade300,\n      width: 1,\n      thickness: 1,\n    ),\n    indicatorColor: Colors.yellow,\n    labelType: NavigationLabelType.showAll,\n    backgroundColor: Colors.deepPurple,\n  ),\n  child: Scaffold(\n    body: Center(\n      child: Text('Hello World'),\n    ),\n  ),\n);\n```\n\n### If you liked the package, then please give it a [Like 👍🏼][package] and [Star ⭐][repository]\n\n\u003c!-- Badges URLs --\u003e\n\n[package_svg]: https://img.shields.io/pub/v/responsive_navigation.svg?color=blueviolet\n[license_svg]: https://img.shields.io/github/license/OutdatedGuy/responsive_navigation.svg?color=purple\n[lints_svg]: https://img.shields.io/badge/style-very_good_analysis-B22C89.svg\n[issues_svg]: https://img.shields.io/github/issues/OutdatedGuy/responsive_navigation.svg\n[issues_closed_svg]: https://img.shields.io/github/issues-closed/OutdatedGuy/responsive_navigation.svg?color=green\n\n\u003c!-- Gifs URLs --\u003e\n\n[normal_responsive]: https://user-images.githubusercontent.com/74326345/183288726-87be9476-0f8e-4c0b-abf0-8306409e735d.gif\n[under_app_bar]: https://user-images.githubusercontent.com/74326345/183288739-9bf7e9ad-7b83-4cff-a7ce-8de0f1283afe.gif\n[very_large_screens]: https://user-images.githubusercontent.com/74326345/183288744-a8f8b15d-ff62-42fc-bd41-7937c778d351.gif\n[slim_nav_rail]: https://user-images.githubusercontent.com/74326345/183288747-2d4ad2d2-0850-43c4-9057-b77291f95927.gif\n[crowded_nav]: https://user-images.githubusercontent.com/74326345/183288877-be4660ce-e085-4b43-a2ed-c7675385a0ba.gif\n[scrollable_nav]: https://user-images.githubusercontent.com/74326345/183288882-13d6a410-bc78-419a-bd17-c6dd6f7d0dd9.gif\n\n\u003c!-- Links --\u003e\n\n[package]: https://pub.dev/packages/responsive_navigation\n[repository]: https://github.com/OutdatedGuy/responsive_navigation\n[issues]: https://github.com/OutdatedGuy/responsive_navigation/issues\n[issues_closed]: https://github.com/OutdatedGuy/responsive_navigation/issues?q=is%3Aissue+is%3Aclosed\n","funding_links":["https://github.com/sponsors/OutdatedGuy"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foutdatedguy%2Fresponsive_navigation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foutdatedguy%2Fresponsive_navigation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foutdatedguy%2Fresponsive_navigation/lists"}