{"id":32288733,"url":"https://github.com/ahmadalibaloch/flutterexpendablefab","last_synced_at":"2026-02-21T02:39:13.844Z","repository":{"id":56828583,"uuid":"403782107","full_name":"ahmadalibaloch/FlutterExpendableFab","owner":"ahmadalibaloch","description":"Flutter Expendable Fab Button with a star view","archived":false,"fork":false,"pushed_at":"2022-08-30T19:59:17.000Z","size":150,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-04-24T02:22:49.213Z","etag":null,"topics":["android","dart","expendable","fab","flutter","ios","linux","web","windows"],"latest_commit_sha":null,"homepage":"","language":"Dart","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/ahmadalibaloch.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}},"created_at":"2021-09-06T23:25:21.000Z","updated_at":"2024-04-14T13:12:54.000Z","dependencies_parsed_at":"2022-08-26T13:50:31.986Z","dependency_job_id":null,"html_url":"https://github.com/ahmadalibaloch/FlutterExpendableFab","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ahmadalibaloch/FlutterExpendableFab","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmadalibaloch%2FFlutterExpendableFab","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmadalibaloch%2FFlutterExpendableFab/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmadalibaloch%2FFlutterExpendableFab/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmadalibaloch%2FFlutterExpendableFab/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ahmadalibaloch","download_url":"https://codeload.github.com/ahmadalibaloch/FlutterExpendableFab/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmadalibaloch%2FFlutterExpendableFab/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280549060,"owners_count":26349272,"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","status":"online","status_checked_at":"2025-10-23T02:00:06.710Z","response_time":142,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["android","dart","expendable","fab","flutter","ios","linux","web","windows"],"created_at":"2025-10-23T02:34:45.975Z","updated_at":"2025-10-23T02:34:50.431Z","avatar_url":"https://github.com/ahmadalibaloch.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Expendable Fab Menu\n[![Pub](https://img.shields.io/pub/v/expendable_fab.svg)](https://pub.dev/packages/expendable_fab)\n[![Pull Requests are welcome](https://img.shields.io/badge/license-MIT-blue)](https://github.com/ahmadalibaloch/FlutterExpendableFab/blob/master/LICENSE)\n[![Codemagic build status](https://api.codemagic.io/apps/613966b6d1095af263a57f02/613966b6d1095af263a57f01/status_badge.svg)](https://codemagic.io/apps/613966b6d1095af263a57f02/613966b6d1095af263a57f01/latest_build)\n![Null safety](https://img.shields.io/badge/null%20safety-true-brightgreen)\n\nA flutter expendable simple FAB Floating Action Button menu\n\n![Showcase](https://github.com/ahmadalibaloch/FlutterExpendableFab/blob/master/example/screenshots/expended.png)\n\n## Installation\n\nJust add `expendable_fab` to your [pubspec.yml](https://flutter.io/using-packages/) file\n\n```yml\ndependencies:\n  expendable_fab: ^0.0.1\n```\n\n## Example\n\n```dart\nclass MyApp extends StatelessWidget {\n  @override\n  Widget build(BuildContext context) {\n    return MaterialApp(\n      home: Scaffold(\n        body: Placeholder(),\n        floatingActionButton: ExpendableFab(\n          icon: Icon(Icons.favorite),\n          closeIcon: Icon(Icons.close),\n          distance: 112.0,\n          children: [\n            ActionButton(\n              onPressed: () =\u003e toast(context, 'balance'),\n              icon: const Icon(Icons.account_balance),\n            ),\n            ActionButton(\n              onPressed: () =\u003e toast(context, 'money'),\n              icon: const Icon(Icons.money),\n            ),\n          ],\n        ),\n      ),\n    );\n  }\n}\n```\n\n\nYou can check for a more complete example in the [example](https://github.com/ahmadalibaloch/FlutterExpendableFab/tree/master/example) directory.\n\n## Customize\n\nYou can customize the widget appareance using the following properties:\n\n| Property  | Description | Default |\n|----------|-------------|---------|\n| distance | Sets the widget distance from bottom and right side | `112` |\n| icon     | The FAB initial icon | `Icon(Icons.create)` |\n| closeIcon     | The FAB close icon | `Icon(Icons.close)` |\n\n## Contributing\n\nPlease submit a PR 😁, I want to have\n1 ) action buttons customization\n2 ) button customization\n3 ) more animations","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fahmadalibaloch%2Fflutterexpendablefab","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fahmadalibaloch%2Fflutterexpendablefab","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fahmadalibaloch%2Fflutterexpendablefab/lists"}