{"id":18632756,"url":"https://github.com/thedevsbuddy/flutter_fusion","last_synced_at":"2025-04-11T07:31:42.101Z","repository":{"id":40555662,"uuid":"395089607","full_name":"thedevsbuddy/flutter_fusion","owner":"thedevsbuddy","description":"A modular structured Flutter GetX MVC starter project to easily start flutter app development and ship your app faster.","archived":false,"fork":false,"pushed_at":"2024-04-27T12:24:49.000Z","size":620,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-05-01T14:26:34.964Z","etag":null,"topics":["flutter","getx","modular","mvc","mvc-pattern"],"latest_commit_sha":null,"homepage":"https://devsbuddy.com","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/thedevsbuddy.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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-08-11T18:58:38.000Z","updated_at":"2024-04-27T12:23:01.000Z","dependencies_parsed_at":"2023-12-23T22:48:17.780Z","dependency_job_id":"898207b3-5675-4c59-bccb-a52a8726ce3e","html_url":"https://github.com/thedevsbuddy/flutter_fusion","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thedevsbuddy%2Fflutter_fusion","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thedevsbuddy%2Fflutter_fusion/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thedevsbuddy%2Fflutter_fusion/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thedevsbuddy%2Fflutter_fusion/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thedevsbuddy","download_url":"https://codeload.github.com/thedevsbuddy/flutter_fusion/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223460633,"owners_count":17148760,"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":["flutter","getx","modular","mvc","mvc-pattern"],"created_at":"2024-11-07T05:13:15.982Z","updated_at":"2024-11-07T05:13:16.427Z","avatar_url":"https://github.com/thedevsbuddy.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FlutterFusion\n\nA starter project to begin any new flutter project.\nIt has the `GetX` package and some more custom helpers and packages to help the dev to build their apps with ease.\nIt uses the `MVC` pattern which is one of the best pattern among developers.\n\n### Getting Started\n\nClone the repository\n\n```shell\ngit clone https://github.com/thedevsbuddy/flutter_fusion.git my_awesome_project\n```\n\n#### Want to use without `ThemeBuilder` option.\n```shell\ngit clone https://github.com/thedevsbuddy/flutter_fusion.git my_awesome_project --branch without_theme_builder\n```\n    \n### Features\n\nHere are some awesome features which you will get by default when scaffolding your project with this starting project.\n\n- **MVCs Pattern**: We are using `MVC` pattern to manage whole project easily as it separates the Logic and UI and models. But i added new layer as Service which will help us communicate with APIs.\n- **Modular Structure**: Most of the developers are the fan of Modular Structure as it gives the flexibility to use a module on any project we build.\n- **Module Generator Tool**: I have built a simple module generator tool to help you generate any module with just a single command.\n- **Mock-Able Services**: Sometimes we don't have any api to test and build our apps so we need to do some mockups for apps here we cover that as well.\n\n## New features\n\n#### Modulr Package - Generate modules in the project\n\nThis package is added as a helper toolkit to generate the module in the project with just a command\nline.\n\n### Generate Module\n\n```shell\nflutter pub run modulr:generate Blog\n```\n\nThis will generate all the files required for a `Module`\n\nGenerated Files Inside your project's `lib/app/modules` directory.\n\n```txt\n📂 Blog\n├── 📂 controllers\n│   └── 📄 BlogController.dart\n├── 📂 routes\n│   ├── 📄 BlogRouter.dart\n│   └── 📄 BlogRoutes.dart\n├── 📂 services\n│   ├── 📄 AppBlogService.dart\n│   ├── 📄 BlogService.dart\n│   └── 📄 MockBlogService.dart\n├── 📂 views\n│   └── 📄 BlogPage.dart\n└── 📄 BlogModule.dart\n```\n\n\n### Generate Controller\n\n```shell\nflutter pub run modulr:controller Comment --on=Blog\n```\n\nThis will generate the new controller (`CommentController.dart`) inside the `Blog` Module.\n\n```txt\n📂 Blog\n├── 📂 controllers\n│   ├── 📄 BlogController.dart\n│   └── 📄 CommentController.dart\n```\n\n### Generate Service\n\n```shell\nflutter pub run modulr:service Comment --on=Blog\n```\n\nIf any module doesn't have services already you can generate services for the module using this command.\n\nGenerated Files:\n\n```txt\n📂 Blog\n├── 📂 services\n│   ├── 📄 AppCommentService.dart\n│   ├── 📄 CommentService.dart\n│   └── 📄 MockCommentService.dart\n```\n\n**_Note: This will check for the services directory inside the provided module name. if it exists it wont generate any file and return void._**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthedevsbuddy%2Fflutter_fusion","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthedevsbuddy%2Fflutter_fusion","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthedevsbuddy%2Fflutter_fusion/lists"}