{"id":19446977,"url":"https://github.com/amanullahgit/flutter-getx-real-world-application","last_synced_at":"2026-05-13T20:33:55.033Z","repository":{"id":258664662,"uuid":"869449075","full_name":"Amanullahgit/flutter-getx-real-world-application","owner":"Amanullahgit","description":"A comprehensive Flutter GetX Masterclass repository covering setup, state management, API integration, and more with real-world examples.","archived":false,"fork":false,"pushed_at":"2024-10-17T16:58:12.000Z","size":326,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"Chapter-1","last_synced_at":"2025-02-25T08:44:50.121Z","etag":null,"topics":["flutter","flutter-app","flutter-course","flutter-getx","flutter-tutorial","getx"],"latest_commit_sha":null,"homepage":"https://youtu.be/X7EjiQEmrBI","language":"C++","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/Amanullahgit.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":"2024-10-08T10:09:37.000Z","updated_at":"2025-01-02T07:27:13.000Z","dependencies_parsed_at":null,"dependency_job_id":"dd393823-ea8e-4c4a-a790-bfa28c13a10b","html_url":"https://github.com/Amanullahgit/flutter-getx-real-world-application","commit_stats":null,"previous_names":["amanullahgit/flutter-getx-real-world-application"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Amanullahgit/flutter-getx-real-world-application","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Amanullahgit%2Fflutter-getx-real-world-application","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Amanullahgit%2Fflutter-getx-real-world-application/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Amanullahgit%2Fflutter-getx-real-world-application/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Amanullahgit%2Fflutter-getx-real-world-application/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Amanullahgit","download_url":"https://codeload.github.com/Amanullahgit/flutter-getx-real-world-application/tar.gz/refs/heads/Chapter-1","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Amanullahgit%2Fflutter-getx-real-world-application/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32999432,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"ssl_error","status_checked_at":"2026-05-13T13:14:51.610Z","response_time":115,"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-app","flutter-course","flutter-getx","flutter-tutorial","getx"],"created_at":"2024-11-10T16:16:03.166Z","updated_at":"2026-05-13T20:33:55.028Z","avatar_url":"https://github.com/Amanullahgit.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flutter GetX Masterclass: Chapter 1 - Setting Up GetX in Your Flutter Project\n\nThis repository contains the code for **Chapter 1** of the Flutter GetX Masterclass. In this chapter, we cover the installation of GetX, setting up a scalable folder structure, and creating a simple product listing app with navigation to a product details page.\n\n## 📹 Watch the Tutorial on YouTube\n\nFollow the step-by-step tutorial in the video for a hands-on experience!\n\n[![Watch on YouTube](https://img.youtube.com/vi/X7EjiQEmrBI/0.jpg)](https://www.youtube.com/watch?v=X7EjiQEmrBI\u0026t=36s)\n\n🔗 **[Watch the full tutorial on YouTube](https://www.youtube.com/watch?v=X7EjiQEmrBI)**\n\n---\n\n## 📝 Chapter Overview\n\nIn this chapter, you'll learn:\n1. How to install and set up GetX in a Flutter project.\n2. How to structure your project for scalability using MVC principles.\n3. How to create a product list and navigate to a product details page using GetX for routing.\n\n---\n\n## 📂 Folder Structure\n\nHere’s the folder structure we’ve set up in this chapter:\n\n```\nlib/\n│\n├── app/\n│   ├── modules/\n│   │   ├── product/\n│   │   │   ├── controllers/\n│   │   │   │   └── product_controller.dart\n│   │   │   ├── views/\n│   │   │   │   └── product_view.dart\n│   │   │   │   └── product_details_view.dart\n│   │   │   └── models/\n│   │   │       └── product_model.dart\n│   └── routes/\n│       └── app_pages.dart\n│       └── app_routes.dart\n└── main.dart\n```\n\n---\n\n## 🧑‍💻 How to Run the App\n\n1. Clone the repository:\n    ```bash\n    git clone git clone -b Chapter-1 https://github.com/Amanullahgit/flutter-getx-real-world-application.git\n    ```\n2. Navigate to the project directory:\n    ```bash\n    cd flutter-getx-real-world-application\n    ```\n3. Install dependencies:\n    ```bash\n    flutter pub get\n    ```\n4. Run the app:\n    ```bash\n    flutter run\n    ```\n\n---\n\nFeel free to fork and contribute to this repository!\n\n---\n\n## 🔗 Useful Links\n\n- **GetX Package**: [pub.dev/packages/get](https://pub.dev/packages/get)\n- **Flutter Documentation**: [flutter.dev/docs](https://flutter.dev/docs)\n\n---\n\nHappy Coding! 🎉\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famanullahgit%2Fflutter-getx-real-world-application","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famanullahgit%2Fflutter-getx-real-world-application","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famanullahgit%2Fflutter-getx-real-world-application/lists"}