{"id":13428501,"url":"https://github.com/iammert/ReadableBottomBar","last_synced_at":"2025-03-16T01:32:40.583Z","repository":{"id":41453078,"uuid":"174749849","full_name":"iammert/ReadableBottomBar","owner":"iammert","description":"Yet another material bottom bar library for Android","archived":false,"fork":false,"pushed_at":"2021-11-09T08:44:52.000Z","size":3558,"stargazers_count":1268,"open_issues_count":16,"forks_count":119,"subscribers_count":17,"default_branch":"master","last_synced_at":"2025-03-10T14:06:41.724Z","etag":null,"topics":["android","bar","bottom","bottombar","kotlin","layout","material","tab","view"],"latest_commit_sha":null,"homepage":null,"language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iammert.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-03-09T21:47:37.000Z","updated_at":"2025-02-27T14:18:32.000Z","dependencies_parsed_at":"2022-09-14T01:32:52.411Z","dependency_job_id":null,"html_url":"https://github.com/iammert/ReadableBottomBar","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iammert%2FReadableBottomBar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iammert%2FReadableBottomBar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iammert%2FReadableBottomBar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iammert%2FReadableBottomBar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iammert","download_url":"https://codeload.github.com/iammert/ReadableBottomBar/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243814901,"owners_count":20352037,"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","bar","bottom","bottombar","kotlin","layout","material","tab","view"],"created_at":"2024-07-31T01:00:58.844Z","updated_at":"2025-03-16T01:32:40.137Z","avatar_url":"https://github.com/iammert.png","language":"Kotlin","funding_links":[],"categories":["Libraries","Kotlin"],"sub_categories":[],"readme":"# ReadableBottomBar\nYet another material bottom bar library for Android\n\n\u003cimg src=\"https://raw.githubusercontent.com/iammert/ReadableBottomBar/master/art/readablebottombar.png\"/\u003e\n\n## GIF\n\u003cimg src=\"https://raw.githubusercontent.com/iammert/ReadableBottomBar/master/art/preview.gif\"/\u003e\n\n## Design Credits\nAll design and inspiration credits goes to [Ranjit](https://www.uplabs.com/posts/readable-tab-bar-concept).\n\n## Usage\n\n* Create your tabs.xml under your res/xml/ folder\n```xml\n\u003c?xml version=\"1.0\" encoding=\"utf-8\"?\u003e\n\u003ctabs\u003e\n    \u003ctab\n        drawable=\"@drawable/ic_home_black_24dp\"\n        text=\"@string/home\" /\u003e\n\n    \u003ctab\n        drawable=\"@drawable/ic_search_black_24dp\"\n        text=\"@string/search\" /\u003e\n\n    \u003ctab\n        drawable=\"@drawable/ic_shopping_basket_black_24dp\"\n        text=\"@string/bag\" /\u003e\n\n    \u003ctab\n        drawable=\"@drawable/ic_favorite_black_24dp\"\n        text=\"@string/favorite\" /\u003e\n\n    \u003ctab\n        drawable=\"@drawable/ic_account_circle_black_24dp\"\n        text=\"@string/profile\" /\u003e\n\u003c/tabs\u003e\n```\n* Add bottom bar to your layout\n```xml\n\u003ccom.iammert.library.readablebottombar.ReadableBottomBar\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"56dp\"\n    app:rbb_tabs=\"@xml/tabs\"/\u003e\n```\n* Add listener\n```kotlin\nbottomBar.setOnItemSelectListener( object :ReadableBottomBar.ItemSelectListener{\n    override fun onItemSelected(index: Int) {\n    }\n})\n```\n\n* Set index at runtime\n```kotlin\nbottomBar.selectItem(index)\n```\n* Customize if you need\n```xml\n\u003ccom.iammert.library.readablebottombar.ReadableBottomBar\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"56dp\"\n    app:rbb_tabs=\"@xml/tabs\"\n    app:rbb_textColor=\"\"\n    app:rbb_indicatorHeight=\"\"\n    app:rbb_indicatorColor=\"\"\n    app:rbb_initialIndex=\"\"\n    app:rbb_backgroundColor=\"\"\n    app:rbb_textSize=\"\"\n    app:rbb_activeItemType=\"text or icon\"/\u003e\n```\n\n## Setup\n```gradle\nallprojects {\n    repositories {\n        ...\n        maven { url 'https://jitpack.io' }\n    }\n}\n\ndependencies {\n    implementation 'com.github.iammert:ReadableBottomBar:0.2'\n}\n```\n\nLicense\n--------\n\n\n    Copyright 2019 Mert Şimşek\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiammert%2FReadableBottomBar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiammert%2FReadableBottomBar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiammert%2FReadableBottomBar/lists"}