{"id":27195398,"url":"https://github.com/decoder07/flutterflow_roomkit","last_synced_at":"2025-08-02T08:44:14.139Z","repository":{"id":208174294,"uuid":"720212825","full_name":"Decoder07/flutterflow_roomkit","owner":"Decoder07","description":"Example showing usage of hms_room_kit package with flutterflow","archived":false,"fork":false,"pushed_at":"2023-11-20T05:48:14.000Z","size":150,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-09T19:50:21.339Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dart","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/Decoder07.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,"governance":null}},"created_at":"2023-11-17T20:44:38.000Z","updated_at":"2023-11-20T08:59:02.000Z","dependencies_parsed_at":"2023-11-20T07:05:12.619Z","dependency_job_id":null,"html_url":"https://github.com/Decoder07/flutterflow_roomkit","commit_stats":null,"previous_names":["decoder07/flutterflow_roomkit"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Decoder07/flutterflow_roomkit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Decoder07%2Fflutterflow_roomkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Decoder07%2Fflutterflow_roomkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Decoder07%2Fflutterflow_roomkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Decoder07%2Fflutterflow_roomkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Decoder07","download_url":"https://codeload.github.com/Decoder07/flutterflow_roomkit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Decoder07%2Fflutterflow_roomkit/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268356088,"owners_count":24237380,"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-08-02T02:00:12.353Z","response_time":74,"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":[],"created_at":"2025-04-09T19:45:55.641Z","updated_at":"2025-08-02T08:44:14.100Z","avatar_url":"https://github.com/Decoder07.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FlutterFlow \u0026 HMS Room Kit App Starter\n\nWelcome to the FlutterFlow and HMS Room Kit App Starter project! This Flutter template provides a solid foundation for building feature-rich mobile applications by combining the power of FlutterFlow for UI design and HMS Room Kit for real-time communication capabilities.\n\n## Features\n\n- **FlutterFlow Integration:** Leverage FlutterFlow's intuitive visual development platform to design stunning user interfaces for your Flutter app effortlessly.\n\n- **HMS Room Kit:** Integrate 100ms HMS Room Kit for seamless real-time communication features such as instant messaging, audio, and video calls into your Flutter application.\n\n## Getting Started\n\nFollow these steps to set up and run the project locally:\n\n1. Clone this repository:\n\n   ```bash\n   git clone https://github.com/Decoder07/flutterflow_roomkit.git\n   ```\n\n2. Navigate to the project directory:\n\n    ```bash\n    cd flutterflow_roomkit\n    ```\n\n3. Install the required dependencies:\n\n    ```bash\n    flutter pub get\n    ```\n\n4. Run the app:\n    \n    ```bash\n    flutter run\n    ```\n\n## Documentation\n\nFor detailed information on how to use FlutterFlow and integrate HMS Room Kit features, check out the documentation:\n\n- [FlutterFlow Documentation](https://docs.flutterflow.io/)\n- [HMS Room Kit Documentation](https://www.100ms.live/docs/flutter/v2/quickstart/prebuilt)\n\n## Steps to run hms_room_kit with flutterflow\n\n`hms_room_kit` manages state and UI out of the box, but there are some conflicts with flutterflow. So, we need to make some changes in the app layer. Please follow the steps below to run the app:\n\n1. Solving dependency conflicts:\n\nThere are several packages which are common in both `flutterflow` and `hms_room_kit`, but with different versions. So, we need to make sure that the versions of these packages are same in both `pubspec.yaml` files. For conflict in packages you will get error like this:\n\n```bash\nError: Failed running flutter pub get...\nBecause custom_widget depends on flutter_cache_manager 3.3.0 which depends on http ^0.13.0, http ^0.13.0 is required.\nSo, because custom_widget depends on http ^1.0.0, version solving failed.\n\n\nYou can try the following suggestion to make the pubspec resolve:\n* Try upgrading your constraint on flutter_cache_manager: flutter pub add flutter_cache_manager:^3.3.1\n```\n\nThis can be solved by updating to the higher version of the package. For example, in the above error, we need to update `flutter_cache_manager` to `^3.3.1` in `pubspec.yaml` file.\n\n\u003e 🔑 Note: Flutterflow UI doesn't directly allow changing the package version, either you need to do it in `Custom Widgets` section or you can download the code from flutterflow and change the version in `pubspec.yaml` file locally. We recommend doing the later since it's much easier.\n\n2. Issues with Navigator:\n\nFlutterflow uses `go_router` whereas `hms_room_kit` uses `MaterialPageRoute` for navigation. So, you might face issues while navigating from app screen to `hms_room_kit` screen. To solve this, you will need to use `MaterialPageRoute` while pushing the `hms_room_kit` path while you can continue using `go_router` for other paths.\n\nThat's it. You can now use the amazing Prebuilt UI with speed of flutterflow in your application.\n\nIf you face any issues or have any questions, please reach out to us on [Discord](https://discord.gg/jD94Fp74Ea)\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdecoder07%2Fflutterflow_roomkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdecoder07%2Fflutterflow_roomkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdecoder07%2Fflutterflow_roomkit/lists"}