{"id":19502744,"url":"https://github.com/ml-opensource/flutter-bricks","last_synced_at":"2026-02-05T18:31:09.305Z","repository":{"id":218740031,"uuid":"727725669","full_name":"ml-opensource/flutter-bricks","owner":"ml-opensource","description":"Flutter project scaffold with Mason CLI for efficient feature creation from bricks. 🧱","archived":false,"fork":false,"pushed_at":"2024-10-16T19:13:43.000Z","size":217,"stargazers_count":2,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-04-15T17:15:32.598Z","etag":null,"topics":["flutter","flutter-bricks","flutter-mason","mason","mason-bricks","mason-cli","monstarlab-bricks"],"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/ml-opensource.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":"2023-12-05T12:59:17.000Z","updated_at":"2024-10-16T19:13:48.000Z","dependencies_parsed_at":"2024-01-23T15:44:53.412Z","dependency_job_id":"0f2c630a-256b-49ab-9f35-43c68dbd9b87","html_url":"https://github.com/ml-opensource/flutter-bricks","commit_stats":null,"previous_names":["monstar-lab-oss/flutter-bricks","ml-opensource/flutter-bricks"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ml-opensource/flutter-bricks","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ml-opensource%2Fflutter-bricks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ml-opensource%2Fflutter-bricks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ml-opensource%2Fflutter-bricks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ml-opensource%2Fflutter-bricks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ml-opensource","download_url":"https://codeload.github.com/ml-opensource/flutter-bricks/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ml-opensource%2Fflutter-bricks/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29128681,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-05T18:31:02.507Z","status":"ssl_error","status_checked_at":"2026-02-05T18:29:43.962Z","response_time":65,"last_error":"SSL_read: 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":["flutter","flutter-bricks","flutter-mason","mason","mason-bricks","mason-cli","monstarlab-bricks"],"created_at":"2024-11-10T22:18:05.581Z","updated_at":"2026-02-05T18:31:09.288Z","avatar_url":"https://github.com/ml-opensource.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Monstarlab Flutter Bricks 🧱\n\nA collection of useful bricks by Monstarlab.\n\n## Installation\n\nEnsure you have the [mason_cli](https://github.com/felangel/mason/tree/master/packages/mason_cli) installed.\n\n```sh\n# 🎯 Activate from https://pub.dev\ndart pub global activate mason_cli\n```\n\n```sh\n# 🍺 Or install from https://brew.sh\nbrew tap felangel/mason\nbrew install mason\n```\n\nTo ensure that you have mason installed in your system, run `mason` on your terminal.\n\n```sh\nmason\n```\n\nYou should see something similar.\n\n```sh\n🧱  mason • lay the foundation!\n...\n```\n\nInitiate the mason by running the following command:\n\n```sh\n# Initiate the mason\nmason init\n```\n\nThis command should create a file named `mason.yaml`.\n\nIn your project include these in `mason.yaml`.\n\n```sh\nbricks:\n  # service brick\n  service:\n    git:\n      url: \"https://github.com/monstar-lab-oss/flutter-bricks.git\"\n      path: bricks/service\n\n  # usecase brick\n  usecase:\n    git:\n      url: \"https://github.com/monstar-lab-oss/flutter-bricks.git\"\n      path: bricks/usecase\n\n  # feature brick\n  feature:\n    git:\n      url: \"https://github.com/monstar-lab-oss/flutter-bricks.git\"\n      path: bricks/feature\n```\n\n## Bricks\n\n| Brick     | Description                               |\n| --------- | ----------------------------------------- |\n| `service` | Generate a new service (data and domain)  |\n| `usecase` | Generate a new usecase (domain)           |\n| `feature` | Generate a new feature (ui, cubits, etc.) |\n\n\u003e _⚠️ You must have Dart 3.0 or up to use new language features._\n\n## Usage\n\nIf you have `mason.yaml` in place just run the following commands to start using:\n\n```sh\n# 🎯 To get all mason bricks from mason.yaml\nmason get\n```\n\nNow you are ready to go! Each time you modify this `brick.yaml`, we need to run this `mason get` command.\n\nFor example, if you want to make a feature in your project —\n\n```sh\n# 🚀 To make a feature from mason brick template\nmason make feature\n```\n\n\u003cimg src=\"assets/terminal_typing.gif\" alt=\"Making a feature GIF\"/\u003e\n\n\u003cbr/\u003e\n\nAlso, make sure you add these lines to your `.gitignore` file if you are using git in your project.\n\n```sh\n# Local Mason Files\n.mason/\nmason-lock.json\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fml-opensource%2Fflutter-bricks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fml-opensource%2Fflutter-bricks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fml-opensource%2Fflutter-bricks/lists"}