{"id":26428482,"url":"https://github.com/rhanbit/nativescript-bottombar","last_synced_at":"2025-03-18T04:31:45.940Z","repository":{"id":17499077,"uuid":"82094884","full_name":"rhanb/nativescript-bottombar","owner":"rhanb","description":"Fancy bottom bar for NativeScript :smile: :beers:","archived":false,"fork":false,"pushed_at":"2023-01-04T18:59:21.000Z","size":6932,"stargazers_count":65,"open_issues_count":55,"forks_count":24,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-10-29T21:54:41.381Z","etag":null,"topics":["android","angular","bottom","bottombar","material","menu","nativescript","navigation","tabview"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rhanb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-02-15T18:53:05.000Z","updated_at":"2024-05-30T15:47:57.000Z","dependencies_parsed_at":"2023-01-14T00:15:09.023Z","dependency_job_id":null,"html_url":"https://github.com/rhanb/nativescript-bottombar","commit_stats":null,"previous_names":["rhanbit/nativescript-bottombar"],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhanb%2Fnativescript-bottombar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhanb%2Fnativescript-bottombar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhanb%2Fnativescript-bottombar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhanb%2Fnativescript-bottombar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rhanb","download_url":"https://codeload.github.com/rhanb/nativescript-bottombar/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244157109,"owners_count":20407632,"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","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":["android","angular","bottom","bottombar","material","menu","nativescript","navigation","tabview"],"created_at":"2025-03-18T04:31:45.631Z","updated_at":"2025-03-18T04:31:45.933Z","avatar_url":"https://github.com/rhanb.png","language":"TypeScript","readme":"[![npm](https://img.shields.io/npm/v/nativescript-bottombar.svg)](https://www.npmjs.com/package/nativescript-bottombar)\n[![npm](https://img.shields.io/npm/dt/nativescript-bottombar.svg?label=npm%20downloads)](https://www.npmjs.com/package/nativescript-bottombar)\n[![twitter: @_rhanb](https://img.shields.io/badge/twitter-%40rhanb-2F98C1.svg)](https://twitter.com/_rhanb)\n\n[![Build Status](https://travis-ci.org/rhanb/nativescript-bottombar.svg?branch=4.0-rc)](https://travis-ci.org/rhanb/nativescript-bottombar)\n![Package size](https://img.shields.io/badge/package%20size-15.1%20kB-lightgrey.svg)\n![Unpacked size](https://img.shields.io/badge/unpacked%20size-58.9%20kB-brightgreen.svg)\n\n[![NPM](https://nodei.co/npm/nativescript-bottombar.png?downloads=true\u0026downloadRank=true\u0026stars=true)](https://nodei.co/npm/nativescript-bottombar/)\n\n\n# NativeScript BottomBar :beers::fire::fr:\n\n\nNativeScript plugin for [BottomNavigationView](https://github.com/aurelhubert/ahbottomnavigation) and [UITabBar](https://developer.apple.com/documentation/uikit/uitabbar).\n\nPS: To have a material design on iOS too, free to use the plugin [nativescript-bottom-navigation](https://github.com/henrychavez/nativescript-bottom-navigation/)\n\nNo third libraries are used in this plugin, wich means this plugin is lightweight because only javascript files will be added to your app.\n\n iOS    |  Android\n-------- | ---------\n![iOS](/src/screenshots/showcase.ios.gif) | ![Android](/src/screenshots/showcase.android.gif)\n\n## Installation\n\n`tns plugin add nativescript-bottombar@next`\n\n## Usage\n\n[API documentation](/API_DOCUMENTATION.md)\n\n- [Angular](/demo-ng/README.md)\n- [Vue](/demo-vue/README.md)\n- [{N} core](/demo/README.md)\n\n## Common Usage\n\n### Icons\n\nThe properties `icon` and `checkedIcon` supports the following path formats:\n\n- `~/`: relative path to the app folder\n- `res://`: icons must be in the App_Resources folder as follow\n\n\n|                     iOS                     | Android                                             |\n|:-------------------------------------------:|-----------------------------------------------------|\n| ![iOS](/src/screenshots/ressources.ios.png) | ![Android](/src/screenshots/ressources.android.png) |\n\n### Ripple effect color on Android\n\nTo change the color of the ripple effect when an item is tapped, please add the following item to your `AppTheme` inside your `App_Resources` \u003e `Android` \u003e `src` \u003e `main` \u003e `res` \u003e `values` \u003e `styles.xml` file with the desired `color` resource.\n\n```XML\n\u003c!-- Application theme --\u003e\n\u003cstyle name=\"AppTheme\" parent=\"AppThemeBase\"\u003e\n    \u003citem name=\"colorControlHighlight\"\u003e@color/ns_accent\u003c/item\u003e\n\u003c/style\u003e\n```\n\n### Android support\n\nYou will need Support Library APIs v28 installed on your developer machine to be able to successfully use this plugin. If you already use the latest {N} version `5.0`, you should be good to go.\n\n## More details\n\n[API documentation](/API_DOCUMENTATION.md)\n\n### TODO\n\n- [ ] Allow to hide/show the `BottomBar`\n- [ ] Expose more `BottomBarItem` customisation (font, position, etc..)\n- [ ] Expose selection indicator on `iOS`\n- [ ] Implement more `unit` tests and `e2e` tests\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frhanbit%2Fnativescript-bottombar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frhanbit%2Fnativescript-bottombar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frhanbit%2Fnativescript-bottombar/lists"}