{"id":24073714,"url":"https://github.com/hieutbui/react-native-floatng-action-circle-button","last_synced_at":"2026-01-23T12:55:58.663Z","repository":{"id":58194868,"uuid":"529782025","full_name":"hieutbui/react-native-floatng-action-circle-button","owner":"hieutbui","description":"Customizable floating multi-action-button component for React Native","archived":false,"fork":false,"pushed_at":"2022-09-05T02:01:19.000Z","size":547,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-06T10:11:15.289Z","etag":null,"topics":["action-buttons","component","fab","floating-action-button","react-native"],"latest_commit_sha":null,"homepage":"","language":"Java","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/hieutbui.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":"2022-08-28T06:30:18.000Z","updated_at":"2024-12-05T05:34:14.000Z","dependencies_parsed_at":"2023-01-17T20:47:14.275Z","dependency_job_id":null,"html_url":"https://github.com/hieutbui/react-native-floatng-action-circle-button","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/hieutbui/react-native-floatng-action-circle-button","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hieutbui%2Freact-native-floatng-action-circle-button","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hieutbui%2Freact-native-floatng-action-circle-button/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hieutbui%2Freact-native-floatng-action-circle-button/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hieutbui%2Freact-native-floatng-action-circle-button/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hieutbui","download_url":"https://codeload.github.com/hieutbui/react-native-floatng-action-circle-button/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hieutbui%2Freact-native-floatng-action-circle-button/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28692403,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T11:01:27.039Z","status":"ssl_error","status_checked_at":"2026-01-23T11:00:26.909Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["action-buttons","component","fab","floating-action-button","react-native"],"created_at":"2025-01-09T17:32:11.454Z","updated_at":"2026-01-23T12:55:58.643Z","avatar_url":"https://github.com/hieutbui.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# React native floating action circle button\n\nSimple floating action button component with circle button for react native.\n\n\n\n\n## Demo\n\n![demoFloating](https://user-images.githubusercontent.com/80142234/187081864-8d45206c-68bb-458d-9043-e71a65bc6f7c.gif)\n\n\n\n## Installation\n\n```bash\n  npm install react-native-floating-action-circle-button\n```\n\n## Usage/Examples\n\n**First step:** import Component\n```javascript\nimport FloatingActionButton from 'react-native-floating-action-circle-button';\n```\n\n**Second step:** add actions list\n```javascript\nconst actions = [\n  {\n    icon: Assets.Icons.activeBin,\n    label: 'Delete',\n    disable: false,\n    onPress: null,\n  },\n  {\n    icon: Assets.Icons.inactiveCancelInvoice,\n    label: 'Cancel',\n    disable: true,\n    onPress: null,\n  },\n  {\n    icon: Assets.Icons.activeReport,\n    label: 'Report',\n    disable: false,\n    onPress: null,\n  },\n];\n```\n\n**Third step:** place it in the screen\n```javascript\n\u003cFloatingActionButton \n  actions={actions}\n  backgroundStyle={{\n    marginRight: 17,\n  }}\n  actionButtonStyle={{\n    marginRight: 17,\n  }}\n  anchorButtonStyle={{\n    marginRight: 17,\n  }}\n/\u003e\n```\n\n## Props\n\n| Property  | Type            | Default | Description                |\n| :-------- | :-------        |:---  | :------------------------- |\n| `actions` | `Array\u003cObject\u003e` |`[]`  | Actions to be shown when user press the anchor Floating Button. **Must pass at less one action** |\n| `containerStyle` | `style`  |`null`| The custom style for wrapper container |\n| `actionButtonStyle` | `style` | `null` | The custom style for actions button |\n| `backgroundStyle` | `style` | `null` | The custom style for background and disable |\n| `anchorInactiveIcon` | `ImageSourcePropType` | `...` | Icon to be rendered for anchor button when it's not pressed |\n| `anchorActiveIcon` | `ImageSourcePropType` | `X` | Icon to be rendered for anchor button when it is pressed |\n| `anchorButtonStyle` | `style` | `null` | The custom style for anchor button |\n| `anchorIconStyle` | `style` | `null` | The custom style for icon inside anchor button |\n\n#### `actions` props\n\n| Property  | Type            | Default | Description                |\n| :-------- | :-------        |:---  | :------------------------- |\n| `disable` | `Boolean` |`false`| Actions status |\n| `label` | `string`  |``| Label for action |\n| `onPress` | `Function` | `null` | Function to be called when action button is pressed. **Can't press when disable is true** |\n| `icon` | `ImageSourcePropType` | `null` | Icon to be rendered inside action button |\n| `iconStyle` | `style` | `null` | The custom style for icon inside action button |\n| `buttonStyle` | `style` | `null` | The custom style for action button |\n\n\n\n## License\n\n[MIT](https://choosealicense.com/licenses/mit/)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhieutbui%2Freact-native-floatng-action-circle-button","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhieutbui%2Freact-native-floatng-action-circle-button","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhieutbui%2Freact-native-floatng-action-circle-button/lists"}