{"id":24482454,"url":"https://github.com/iamageo/multifab","last_synced_at":"2025-04-13T16:43:31.380Z","repository":{"id":58004523,"uuid":"528993001","full_name":"iamageo/MultiFab","owner":"iamageo","description":"➕ An efficient and beaufitul Multi Float Action Button library implemented in Jetpack Compose 🚀","archived":false,"fork":false,"pushed_at":"2025-03-24T14:00:00.000Z","size":162,"stargazers_count":19,"open_issues_count":3,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-27T07:47:54.454Z","etag":null,"topics":["android","custom-component","fab","hacktoberfest","hacktoberfest-accepted","jetpack-compose","jetpack-compose-library","kotlin","library","multi-floating-action-button","multifab","twitter"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/iamageo.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-08-25T19:34:20.000Z","updated_at":"2025-02-17T01:32:58.000Z","dependencies_parsed_at":"2024-05-06T15:11:46.394Z","dependency_job_id":"72c1ecb9-8e4c-4136-a6cc-0bc0a6a9d57b","html_url":"https://github.com/iamageo/MultiFab","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamageo%2FMultiFab","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamageo%2FMultiFab/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamageo%2FMultiFab/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamageo%2FMultiFab/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iamageo","download_url":"https://codeload.github.com/iamageo/MultiFab/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248747560,"owners_count":21155472,"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","custom-component","fab","hacktoberfest","hacktoberfest-accepted","jetpack-compose","jetpack-compose-library","kotlin","library","multi-floating-action-button","multifab","twitter"],"created_at":"2025-01-21T12:13:50.728Z","updated_at":"2025-04-13T16:43:31.363Z","avatar_url":"https://github.com/iamageo.png","language":"Kotlin","readme":"\u003ch1 align=\"center\"\u003eMulti Float Action Button\u003c/h1\u003e\u003cbr/\u003e\n\u003cp align=\"center\"\u003e \n➕ An efficient and beautiful Multi Float action button library implemented in Jetpack Compose 🚀\n\u003c/p\u003e\n\n![banner_multifab](https://user-images.githubusercontent.com/26925002/187031958-a2aa51a4-9aee-4f6a-9066-644ddb91862c.png)\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://opensource.org/licenses/Apache-2.0\"\u003e\u003cimg alt=\"License\" src=\"https://img.shields.io/badge/License-Apache%202.0-blue.svg\"/\u003e\u003c/a\u003e\n  \u003ca href=\"https://android-arsenal.com/api?level=21\"\u003e\u003cimg alt=\"API\" src=\"https://img.shields.io/badge/API-21%2B-brightgreen.svg?style=flat\"/\u003e\u003c/a\u003e\n  \u003cimg alt=\"repo size\" src=\"https://img.shields.io/github/repo-size/iamageo/MultiFab\"/\u003e\n  \u003cbr/\u003e\n    \u003cimg alt=\"forks\" src=\"https://img.shields.io/github/forks/iamageo/MultiFab?style=social\"/\u003e\n    \u003cimg alt=\"stars\" src=\"https://img.shields.io/github/stars/iamageo/MultiFab?style=social\"/\u003e\n\n\n\u003c/p\u003e\n\n## Including in your project\n[![](https://jitpack.io/v/iamageo/MultiFab.svg)](https://jitpack.io/#iamageo/MultiFab)\n\n### Gradle\nAdd below codes to your **root** `build.gradle` file (not your module build.gradle file).\n```gradle\nallprojects {\n  repositories {\n    ...\n    maven { url 'https://jitpack.io' }\n  }\n}\n```\nAnd add a dependency code to your **module**'s `build.gradle` file.\n```gradle\ndependencies {\n  implementation 'com.github.iamageo:MultiFab:{multifab-version}'\n}\n```\n\n## Anatomy\n![anatomy](https://user-images.githubusercontent.com/26925002/187083144-b87a3b3e-7eb0-4356-86b8-2ab8f80000bf.png)\n\n\u003e 1 - MultiFloatActionButton\n  - FabIcon\n  - FabOption\n  - itemsMultiFab\n  - onFabItemClicked\n  - FabTitle\n  - ShowFabTitle\n  \n\u003e 2 - MultiFabItem\n\n## Basic Usage\nAdd in you Activity file.\n\n```kotlin\nMultiFloatingActionButton(\n    fabIcon = FabIcon(\n        iconRes = R.drawable.ic_baseline_add_24,\n        iconResAfterRotate = R.drawable.ic_baseline_remove_24,\n        iconRotate = 180f\n    ),\n    fabOption = FabOption(\n        iconTint = Color.White,\n        showLabels = true,\n        backgroundTint = Color.Blue,\n    ),\n    itemsMultiFab = listOf(\n        MultiFabItem(\n            icon = R.drawable.ic_baseline_add_24,\n            label = \"first\",\n            labelColor = Color.White\n        ),\n        MultiFabItem(\n            icon = R.drawable.ic_baseline_add_24,\n            label = \"second\",\n            labelColor = Color.White\n        ),\n    ),\n    onFabItemClicked = { println(it) },\n    fabTitle = \"MultiFloatActionButton\",\n    showFabTitle = false\n )\n```\n## Preview\n![multifab](https://user-images.githubusercontent.com/26925002/187035337-b9f654b6-7e90-4395-bada-5c22aa681692.gif)\n\n## Hacktoberfest 2022\nThis project has been submitted for hacktoberfest 2022. [See more here](https://hacktoberfest.com/)\n\n## License\n```\n    Copyright 2022 Geovani Amaral\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","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiamageo%2Fmultifab","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiamageo%2Fmultifab","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiamageo%2Fmultifab/lists"}