{"id":35062981,"url":"https://github.com/kenresoft/bottom_nav","last_synced_at":"2026-04-26T17:31:20.056Z","repository":{"id":155515298,"uuid":"629963525","full_name":"kenresoft/bottom_nav","owner":"kenresoft","description":"A Flutter BottomNavigation package with extra funtions and flexibility and ease of usage.","archived":false,"fork":false,"pushed_at":"2024-04-12T23:51:47.000Z","size":666,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-04-14T06:47:36.473Z","etag":null,"topics":["bottomnavigationview","dart","flutter","package"],"latest_commit_sha":null,"homepage":"","language":"Dart","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/kenresoft.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"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}},"created_at":"2023-04-19T11:39:35.000Z","updated_at":"2024-04-14T06:47:36.474Z","dependencies_parsed_at":"2023-11-08T01:45:39.589Z","dependency_job_id":"fe6043c0-edf4-4c38-88b8-5a36707d9d53","html_url":"https://github.com/kenresoft/bottom_nav","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kenresoft/bottom_nav","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kenresoft%2Fbottom_nav","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kenresoft%2Fbottom_nav/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kenresoft%2Fbottom_nav/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kenresoft%2Fbottom_nav/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kenresoft","download_url":"https://codeload.github.com/kenresoft/bottom_nav/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kenresoft%2Fbottom_nav/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32307010,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T17:23:19.671Z","status":"ssl_error","status_checked_at":"2026-04-26T17:23:19.195Z","response_time":129,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["bottomnavigationview","dart","flutter","package"],"created_at":"2025-12-27T10:57:30.449Z","updated_at":"2026-04-26T17:31:20.049Z","avatar_url":"https://github.com/kenresoft.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!--\nThis README describes the package. If you publish this package to pub.dev,\nthis README's contents appear on the landing page for your package.\n\nFor information about how to write a good package README, see the guide for\n[writing package pages](https://dart.dev/guides/libraries/writing-package-pages).\n\nFor general information about developing packages, see the Dart guide for\n[creating packages](https://dart.dev/guides/libraries/create-library-packages)\nand the Flutter guide for\n[developing packages and plugins](https://flutter.dev/developing-packages).\n--\u003e\n\nA Flutter BottomNavigation package with extra functions and flexibility and ease of usage.\n\n## Features\n\n- Supports every other widgets aside Icon as [BottomNavigation] Item\n- Supports [BottomNavigation] top [Divider] widget.\n- Support [BottomNavItem] custom background which can either be enable or disabled.\n- [BottomNavigation] Background can be fully customized, images can be applied likewise gradient colors.\n\n### Screenshots\n\n\u003cimg src=\"screenshots/Screenshot_20230419-122006.jpg\" width=\"250\" title=\"BottomNav 1\" alt=\"screenshot_1\"/\u003e\n\u003cimg src=\"screenshots/Screenshot_20230419-122758.jpg\" width=\"250\" title=\"BottomNav 2\" alt=\"screenshot_2\"/\u003e\n\u003cimg src=\"screenshots/Screenshot_20230419-122847.jpg\" width=\"250\" title=\"BottomNav 3\" alt=\"screenshot_3\"/\u003e\n\u003cimg src=\"screenshots/Screenshot_20230419-122954.jpg\" width=\"250\" title=\"BottomNav 4\" alt=\"screenshot_4\"/\u003e\n\n## Getting started\n\nTo get started with this package just set it up in your [pubspec.yaml] file, thus:\n\n### Dependency\n\n```yaml\n  bottom_nav:\n    git:\n      url: git@github.com:kenresoft/bottom_nav.git\n      ref: master\n```\n\n## Usage\n\n```dart\n class BottomNavExample extends StatelessWidget {\n  const BottomNavExample({Key? key}) : super(key: key);\n\n  @override\n  Widget build(BuildContext context) {\n    return BottomNav(\n      labelStyle: const TextStyle(fontStyle: FontStyle.italic),\n      height: 82,\n      padding: const EdgeInsets.all(25).copyWith(top: 5, bottom: 5),\n      backgroundSelected: Colors.blue.shade900,\n      divider: const Divider(height: 0),\n      borderRadius: const BorderRadius.only(topRight: Radius.circular(20), topLeft: Radius.circular(20)),\n      onTap: (index) =\u003e buildNavSwitch(index, context, widget.ref),\n      iconSize: 23,\n      labelSize: 20,\n      backgroundColor: Colors.white.withOpacity(0.2),\n      color: Colors.white.withOpacity(0.5),\n      colorSelected: Colors.white,\n      indexSelected: widget.ref.watch(tabProvider.select((value) =\u003e value)),\n      items: const [\n        BottomNavItem(label: 'Home', child: CupertinoIcons.home),\n        BottomNavItem(label: 'Book', child: CupertinoIcons.book),\n        BottomNavItem(label: 'Bubble', child: CupertinoIcons.bubble_left),\n        BottomNavItem(label: 'Bookmark', child: CupertinoIcons.bookmark),\n      ],\n    );\n  }\n}\n\n```\n\n## Additional information\n\nThis package is not hosted on the pub.dev site yet.\nFeel free to add in your suggestions, contributions and support.\nWe keep upgrading this package for better performance even as the dart and flutter frameworks are been updated for the community.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkenresoft%2Fbottom_nav","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkenresoft%2Fbottom_nav","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkenresoft%2Fbottom_nav/lists"}