{"id":13428329,"url":"https://github.com/ibrahimsn98/SmoothBottomBar","last_synced_at":"2025-03-16T01:32:21.986Z","repository":{"id":41168940,"uuid":"217545172","full_name":"ibrahimsn98/SmoothBottomBar","owner":"ibrahimsn98","description":"A lightweight Android material bottom navigation bar library","archived":false,"fork":false,"pushed_at":"2022-10-28T18:27:59.000Z","size":1687,"stargazers_count":2000,"open_issues_count":48,"forks_count":256,"subscribers_count":21,"default_branch":"master","last_synced_at":"2025-03-09T04:19:45.849Z","etag":null,"topics":["android","android-bottom-navigation","android-library","android-tabs","bottom-navigation","bottom-navigation-bar"],"latest_commit_sha":null,"homepage":null,"language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ibrahimsn98.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":"2019-10-25T13:55:21.000Z","updated_at":"2025-03-06T01:57:29.000Z","dependencies_parsed_at":"2022-07-16T18:16:59.777Z","dependency_job_id":null,"html_url":"https://github.com/ibrahimsn98/SmoothBottomBar","commit_stats":null,"previous_names":[],"tags_count":17,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ibrahimsn98%2FSmoothBottomBar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ibrahimsn98%2FSmoothBottomBar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ibrahimsn98%2FSmoothBottomBar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ibrahimsn98%2FSmoothBottomBar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ibrahimsn98","download_url":"https://codeload.github.com/ibrahimsn98/SmoothBottomBar/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243814900,"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","android-bottom-navigation","android-library","android-tabs","bottom-navigation","bottom-navigation-bar"],"created_at":"2024-07-31T01:00:52.706Z","updated_at":"2025-03-16T01:32:21.676Z","avatar_url":"https://github.com/ibrahimsn98.png","language":"Kotlin","funding_links":[],"categories":["Libraries","Library","Kotlin"],"sub_categories":[],"readme":"# SmoothBottomBar\n\nA lightweight Android material bottom navigation bar library\n\n[![](https://jitpack.io/v/ibrahimsn98/SmoothBottomBar.svg)](https://jitpack.io/#ibrahimsn98/SmoothBottomBar)\n[![API](https://img.shields.io/badge/API-16%2B-brightgreen.svg?style=flat)](https://android-arsenal.com/api?level=16)\n[![Android Arsenal]( https://img.shields.io/badge/Android%20Arsenal-SmoothBottomBar-green.svg?style=flat )]( https://android-arsenal.com/details/1/7932 )\n[![Android Weekly](https://androidweekly.net/issues/issue-385/badge)](https://androidweekly.net/issues/issue-385)\n\n## GIF\n\n\u003cimg src=\"https://cdn.dribbble.com/users/1015191/screenshots/6251784/snapp---animation.gif\"/\u003e\n\n## Design Credits\n\nAll design and inspiration credits belong to [Alejandro Ausejo](https://dribbble.com/shots/6251784-Navigation-Menu-Animation).\n\n## Usage\n\n-   Create menu.xml under your res/menu/ folder\n```xml\n\u003c?xml version=\"1.0\" encoding=\"utf-8\"?\u003e\n\u003cmenu xmlns:android=\"http://schemas.android.com/apk/res/android\"\u003e\n\n    \u003citem\n        android:id=\"@+id/item0\"\n        android:title=\"@string/menu_dashboard\"\n        android:icon=\"@drawable/ic_dashboard_white_24dp\"/\u003e\n\n    \u003citem\n        android:id=\"@+id/item1\"\n        android:title=\"@string/menu_leaderboard\"\n        android:icon=\"@drawable/ic_multiline_chart_white_24dp\"/\u003e\n\n    \u003citem\n        android:id=\"@+id/item2\"\n        android:title=\"@string/menu_store\"\n        android:icon=\"@drawable/ic_store_white_24dp\"/\u003e\n\n    \u003citem\n        android:id=\"@+id/item3\"\n        android:title=\"@string/menu_profile\"\n        android:icon=\"@drawable/ic_person_outline_white_24dp\"/\u003e\n\n\u003c/menu\u003e\n```\n\n-   Add view into your layout file\n```xml\n\u003cme.ibrahimsn.lib.SmoothBottomBar\n    android:id=\"@+id/bottomBar\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"70dp\"\n    app:backgroundColor=\"@color/colorPrimary\"\n    app:badgeColor=\"@color/colorBadge\"\n    app:menu=\"@menu/menu_bottom\"/\u003e\n```\n\n-   Use SmoothBottomBar callbacks in your activity\n```kotlin\nbottomBar.onItemSelected = {\n    status.text = \"Item $it selected\"\n}\n\nbottomBar.onItemReselected = {\n    status.text = \"Item $it re-selected\"\n}\n```\n\nOR\n\n```kotlin\nbottomBar.setOnItemSelectedListener(object: OnItemSelectedListener {\n    override fun onItemSelect(pos: Int) {\n        status.text = \"Item $pos selected\"\n    }\n})\n\nbottomBar.setOnItemReselectedListener(object: OnItemReselectedListener {\n    override fun onItemReselect(pos: Int) {\n        status.text = \"Item $pos re-selected\"\n    }\n})\n```\n\n \u003e**Note:** For projects without kotlin, you may need to add `org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion` to your dependencies since this is a Kotlin library.\n\n## **Use SmoothBottomBar with [Navigation Components](https://developer.android.com/guide/navigation/).**\n\nCoupled with the Navigation Component from the [Android Jetpack](https://developer.android.com/jetpack), SmoothBottomBar offers easier navigation within your application by designating navigation to the Navigation Component. This works best when using fragments, as the Navigation component helps to handle your fragment transactions.\n\n- Setup Navigation Component i.e. Add dependenccy to your project, create a Navigation Graph etc.\n- For each Fragment in your Navigation Graph, ensure that the Fragment's `id` is the same as the MenuItems in your Menu i.e res/menu/ folder\n```xml\n\u003c?xml version=\"1.0\" encoding=\"utf-8\"?\u003e\n\u003cmenu xmlns:android=\"http://schemas.android.com/apk/res/android\"\u003e\n\n    \u003citem\n        android:id=\"@+id/first_fragment\"\n        android:title=\"@string/menu_dashboard\"\n        android:icon=\"@drawable/ic_dashboard_white_24dp\"/\u003e\n\n    \u003citem\n        android:id=\"@+id/second_fragment\"\n        android:title=\"@string/menu_leaderboard\"\n        android:icon=\"@drawable/ic_multiline_chart_white_24dp\"/\u003e\n\n    \u003citem\n        android:id=\"@+id/third_fragment\"\n        android:title=\"@string/menu_store\"\n        android:icon=\"@drawable/ic_store_white_24dp\"/\u003e\n\n    \u003citem\n        android:id=\"@+id/fourth_fragment\"\n        android:title=\"@string/menu_profile\"\n        android:icon=\"@drawable/ic_person_outline_white_24dp\"/\u003e\n\n\u003c/menu\u003e\n```\n\nNavigation Graph i.e res/navigation/ folder\n```xml\n\u003c?xml version=\"1.0\" encoding=\"utf-8\"?\u003e\n\u003cnavigation xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:app=\"http://schemas.android.com/apk/res-auto\"\n    xmlns:tools=\"http://schemas.android.com/tools\"\n    android:id=\"@+id/nav_graph\"\n    app:startDestination=\"@id/first_fragment\"\u003e\n\n    \u003cfragment\n        android:id=\"@+id/first_fragment\"\n        android:name=\"me.ibrahimsn.smoothbottombar.FirstFragment\"\n        android:label=\"Dashboard\"\n        tools:layout=\"@layout/fragment_first\" \u003e\n        \u003caction\n            android:id=\"@+id/action_firstFragment_to_secondFragment\"\n            app:destination=\"@id/second_fragment\" /\u003e\n    \u003c/fragment\u003e\n    \u003cfragment\n        android:id=\"@+id/second_fragment\"\n        android:name=\"me.ibrahimsn.smoothbottombar.SecondFragment\"\n        android:label=\"Leaderboard\"\n        tools:layout=\"@layout/fragment_second\" \u003e\n        \u003caction\n            android:id=\"@+id/action_secondFragment_to_thirdFragment\"\n            app:destination=\"@id/third_fragment\" /\u003e\n    \u003c/fragment\u003e\n    \u003cfragment\n        android:id=\"@+id/third_fragment\"\n        android:name=\"me.ibrahimsn.smoothbottombar.ThirdFragment\"\n        android:label=\"Store\"\n        tools:layout=\"@layout/fragment_third\" \u003e\n        \u003caction\n            android:id=\"@+id/action_thirdFragment_to_fourthFragment\"\n            app:destination=\"@id/fourth_fragment\" /\u003e\n    \u003c/fragment\u003e\n    \u003cfragment\n        android:id=\"@+id/fourth_fragment\"\n        android:name=\"me.ibrahimsn.smoothbottombar.FourthFragment\"\n        android:label=\"Profile\"\n        tools:layout=\"@layout/fragment_fourth\" /\u003e\n\u003c/navigation\u003e\n```\n\n- In your activity i.e `MainActivity`, create an instance of `PopupMenu` which takes a `context` and an `anchor`(pass in null) and then inflate this `PopupMenu` with the layout menu for the `SmoothBottomBar`.  \n- Get a reference to your `SmoothBottomBar` and call `setupWithNavController()` which takes in a `Menu` and `NavController`, pass in the menu of the previously instantiated `PopupMenu` i.e.(`popUpMenu.menu`)  and your `NavController`. \n- Preferably set this up in a function as shown below and call this function i.e. (`setupSmoothBottomMenu()`) in the `onCreate` method of your activity. \n\n**N.B:**  Sample app makes use of [ViewBinding](https://developer.android.com/topic/libraries/view-binding) to get reference to views in the layout.\n\n```kotlin\n   private fun setupSmoothBottomMenu() {\n        binding.bottomBar.setupWithNavController(navController)\n   }\n```\n\n\n### ActionBar\nYou can also setup your `ActionBar` with the Navigation Component by calling `setupActionBarWithNavController` and pass in your `NavController`. \n\n**N.B:** Your app needs to have a `Toolbar` for `setupActionBarWithNavController` to work. If your app theme doesn't have a `Toolbar` i.e. (Theme.AppCompat.Light.NoActionBar) you would need to: \n\n- Add one to your layout i.e.\n\n```xml\n \u003ccom.google.android.material.appbar.AppBarLayout\n        android:id=\"@+id/app_bar_layout\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        app:layout_constraintEnd_toEndOf=\"parent\"\n        app:layout_constraintStart_toStartOf=\"parent\"\n        app:layout_constraintTop_toTopOf=\"parent\"\u003e\n        \u003candroidx.appcompat.widget.Toolbar\n            android:id=\"@+id/toolBar\"\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\" /\u003e\n    \u003c/com.google.android.material.appbar.AppBarLayout\u003e\n```\n- Set the support action bar to your `Toolbar` using `setSupportActionBar(your_toolbar_id)` in this case `setSupportActionBar(binding.toolBar)`\n\nWe now have something like this:\n\n```kotlin\n private lateinit var navController: NavController\n private lateinit var binding: ActivityMainBinding\n\n    override fun onCreate(savedInstanceState: Bundle?) {\n        super.onCreate(savedInstanceState)\n        binding = ActivityMainBinding.inflate(layoutInflater)\n        setContentView(binding.root)\n        navController = findNavController(R.id.main_fragment)\n        setupActionBarWithNavController(navController)\n        setupSmoothBottomMenu()\n    }\n    \n    private fun setupSmoothBottomMenu() {\n        binding.bottomBar.setupWithNavController(navController)\n    }\n\n    //set an active fragment programmatically\n    fun setSelectedItem(pos:Int){\n        binding.bottomBar.setSelectedItem(pos)\n    }\n    //set badge indicator\n    fun setBadge(pos:Int){\n        binding.bottomBar.setBadge(pos)\n    }\n    //remove badge indicator\n    fun removeBadge(pos:Int){\n        binding.bottomBar.removeBadge(pos)\n    }\n\n    override fun onSupportNavigateUp(): Boolean {\n        return navController.navigateUp() || super.onSupportNavigateUp()\n    }\n```\n\n### Result Demo:\n\n\u003cp align=\"center\"\u003e\u003ca\u003e\u003cimg src=\"https://user-images.githubusercontent.com/29807085/117545623-78f8a280-b01e-11eb-9a2a-06d610bd6f95.gif\" width=\"300\"\u003e\u003c/a\u003e\u003c/p\u003e\n\n### Update [8th May, 2021]\nPrior to the [initial addition of this feature](https://github.com/ibrahimsn98/SmoothBottomBar/pull/33), you can now inflate separate menu items for the `SmoothBottomBar` and your `Toolbar`. \n- Create the menu item you want to inflate in the `Toolbar` i.e.\n\n```xml\n\u003c?xml version=\"1.0\" encoding=\"utf-8\"?\u003e\n\u003cmenu xmlns:android=\"http://schemas.android.com/apk/res/android\"\u003e\n    \u003citem\n        android:id=\"@+id/another_item_1\"\n        android:title=\"Another Item 1\" /\u003e\n    \u003citem\n        android:id=\"@+id/another_item_2\"\n        android:title=\"Another Item 2\" /\u003e\n    \u003citem\n        android:id=\"@+id/another_item_3\"\n        android:title=\"Another Item 3\" /\u003e\n\u003c/menu\u003e\n```\n- Override `OnCreateOptionsMenu` and `onOptionsItemSelected` (ensure it returns `super.onOptionsItemSelected(item)`). Now we have:\n\n```kotlin\n  class MainActivity : AppCompatActivity() {\n    private lateinit var navController: NavController\n    private lateinit var binding: ActivityMainBinding\n\n    override fun onCreate(savedInstanceState: Bundle?) {\n        super.onCreate(savedInstanceState)\n        binding = ActivityMainBinding.inflate(layoutInflater)\n        setContentView(binding.root)\n        navController = findNavController(R.id.main_fragment)\n        setupActionBarWithNavController(navController)\n        setupSmoothBottomMenu()\n    }\n\n    override fun onCreateOptionsMenu(menu: Menu?): Boolean {\n        menuInflater.inflate(R.menu.another_menu, menu)\n        return true\n    }\n\n    override fun onOptionsItemSelected(item: MenuItem): Boolean {\n        when (item.itemId) {\n            R.id.another_item_1 -\u003e {\n                showToast(\"Another Menu Item 1 Selected\")\n            }\n\n            R.id.another_item_2 -\u003e {\n                showToast(\"Another Menu Item 2 Selected\")\n            }\n\n            R.id.another_item_3 -\u003e {\n                showToast(\"Another Menu Item 3 Selected\")\n            }\n        }\n        return super.onOptionsItemSelected(item)\n    }\n\n\n    private fun showToast(msg: String) {\n        Toast.makeText(this, msg, Toast.LENGTH_SHORT).show()\n    }\n\n    private fun setupSmoothBottomMenu() {\n        binding.bottomBar.setupWithNavController(navController)\n    }\n\n    //set an active fragment programmatically\n    fun setSelectedItem(pos:Int){\n        binding.bottomBar.setSelectedItem(pos)\n    }\n    //set badge indicator\n    fun setBadge(pos:Int){\n        binding.bottomBar.setBadge(pos)\n    }\n    //remove badge indicator\n    fun removeBadge(pos:Int){\n        binding.bottomBar.removeBadge(pos)\n    }\n\n    override fun onSupportNavigateUp(): Boolean {\n        return navController.navigateUp() || super.onSupportNavigateUp()\n    }\n}\n```\n\n### Select Bottom Item from any fragment\n```kotlin\n    buttonId.setOnClickListener {\n        (requireActivity() as MainActivity).setSelectedItem(2)\n    }\n```\n\n\n### Result Demo:\n\n\u003cp align=\"center\"\u003e\u003ca\u003e\u003cimg src=\"https://user-images.githubusercontent.com/29807085/117545665-a6dde700-b01e-11eb-8ede-bb9263826814.gif\" width=\"300\"\u003e\u003c/a\u003e\u003c/p\u003e\n\n\n## Customization\n\n```xml\n\u003cme.ibrahimsn.lib.SmoothBottomBar\n        android:id=\"@+id/bottomBar\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"70dp\"\n        app:menu=\"\"\n        app:backgroundColor=\"\"\n        app:indicatorColor=\"\"\n        app:indicatorRadius=\"\"\n        app:cornerRadius=\"\"\n        app:corners=\"\"\n        app:sideMargins=\"\"\n        app:itemPadding=\"\"\n        app:textColor=\"\"\n        app:badgeColor=\"\"\n        app:itemFontFamily=\"\"\n        app:textSize=\"\"\n        app:iconSize=\"\"\n        app:iconTint=\"\"\n        app:iconTintActive=\"\"\n        app:activeItem=\"\"\n        app:duration=\"\" /\u003e\n```\n\n## Setup\n\n\u003e Follow me on Twitter [@ibrahimsn98](https://twitter.com/ibrahimsn98)\n\n```gradle\n//project label build.gradle\nbuildscript {\n    repositories {\n         ....\n        maven { url 'https://jitpack.io' }\n    }\n}\n\nallprojects {\n    repositories {\n     .......\n        maven { url 'https://www.jitpack.io' }\n    }\n}\n//app label build.gradle\ndependencies {\n        implementation 'com.github.ibrahimsn98:SmoothBottomBar:1.7.9'\n}\n```\n\n## Contributors ✨\n\u003ctable\u003e\n    \u003ctr\u003e\n        \u003ctd align=\"center\"\u003e\n            \u003ca href=\"https://github.com/brookmg\"\u003e\n                \u003cimg src=\"https://avatars3.githubusercontent.com/u/7487888?s=460\u0026u=7ba52b250536b301987aaa350f605bbaf3ffa8ed\u0026v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\n                \u003csub\u003e\u003cb\u003ebrookmg\u003c/b\u003e\u003c/sub\u003e\n            \u003c/a\u003e\n        \u003c/td\u003e\n        \u003ctd align=\"center\"\u003e\n            \u003ca href=\"https://github.com/rezaepsilon0\"\u003e\n                \u003cimg src=\"https://avatars0.githubusercontent.com/u/18679475?s=460\u0026u=a5e771cc32bff987aceccafa55edab06a8aa804f\u0026v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\n                \u003csub\u003e\u003cb\u003erezaepsilon0\u003c/b\u003e\u003c/sub\u003e\n            \u003c/a\u003e\n        \u003c/td\u003e\n        \u003ctd align=\"center\"\u003e\n            \u003ca href=\"https://github.com/amitdash291\"\u003e\n                \u003cimg src=\"https://avatars2.githubusercontent.com/u/18529185?s=460\u0026v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\n                \u003csub\u003e\u003cb\u003eamitdash291\u003c/b\u003e\u003c/sub\u003e\n            \u003c/a\u003e\n        \u003c/td\u003e\n        \u003ctd align=\"center\"\u003e\n            \u003ca href=\"https://github.com/tobiasschuerg\"\u003e\n                \u003cimg src=\"https://avatars2.githubusercontent.com/u/1324555?s=460\u0026v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\n                \u003csub\u003e\u003cb\u003etobiasschuerg\u003c/b\u003e\u003c/sub\u003e\n            \u003c/a\u003e\n        \u003c/td\u003e\n        \u003ctd align=\"center\"\u003e\n            \u003ca href=\"https://github.com/mayokunthefirst\"\u003e\n                \u003cimg src=\"https://avatars0.githubusercontent.com/u/29807085?s=460\u0026u=493fd9b143dd96eecea56749f57d20e002e246e4\u0026v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\n                \u003csub\u003e\u003cb\u003emayokunthefirst\u003c/b\u003e\u003c/sub\u003e\n            \u003c/a\u003e\n        \u003c/td\u003e\n        \u003ctd align=\"center\"\u003e\n            \u003ca href=\"https://github.com/FannyDemey\"\u003e\n                \u003cimg src=\"https://avatars.githubusercontent.com/u/3006608?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\n                \u003csub\u003e\u003cb\u003eFannyDemey\u003c/b\u003e\u003c/sub\u003e\n            \u003c/a\u003e\n        \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n    \t \u003ctd align=\"center\"\u003e\n            \u003ca href=\"https://github.com/Milad-Akarie\"\u003e\n                \u003cimg src=\"https://avatars.githubusercontent.com/u/55059449?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\n                \u003csub\u003e\u003cb\u003eMilad akarie\u003c/b\u003e\u003c/sub\u003e\n            \u003c/a\u003e\n        \u003c/td\u003e\n        \u003ctd align=\"center\"\u003e\n            \u003ca href=\"https://github.com/milon27\"\u003e\n                \u003cimg src=\"https://avatars.githubusercontent.com/u/44096479?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\n                \u003csub\u003e\u003cb\u003eMilon27\u003c/b\u003e\u003c/sub\u003e\n            \u003c/a\u003e\n        \u003c/td\u003e\n    \u003c/tr\u003e\n\u003c/table\u003e\n\n\n## License\n\n```\nMIT License\n\nCopyright (c) 2019 İbrahim Süren\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fibrahimsn98%2FSmoothBottomBar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fibrahimsn98%2FSmoothBottomBar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fibrahimsn98%2FSmoothBottomBar/lists"}