{"id":20849747,"url":"https://github.com/mahmoodhamdi/clean_arch_bookly_app","last_synced_at":"2026-04-18T14:01:56.753Z","repository":{"id":247495244,"uuid":"824939377","full_name":"mahmoodhamdi/clean_arch_bookly_app","owner":"mahmoodhamdi","description":"An innovative Flutter project showcasing Clean Architecture principles through a book exploration app using the Google Books API.","archived":false,"fork":false,"pushed_at":"2024-07-08T22:13:17.000Z","size":1021,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-02T17:47:46.346Z","etag":null,"topics":["bookapi","clean","clean-architecture","cleanarchitecture","code","darktheme","dart","flutter","repositorypattern"],"latest_commit_sha":null,"homepage":"","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/mahmoodhamdi.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-07-06T10:47:59.000Z","updated_at":"2024-07-08T22:33:38.000Z","dependencies_parsed_at":"2024-07-09T04:10:46.151Z","dependency_job_id":null,"html_url":"https://github.com/mahmoodhamdi/clean_arch_bookly_app","commit_stats":null,"previous_names":["mahmoodhamdi/clean_arch_bookly_app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mahmoodhamdi/clean_arch_bookly_app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmoodhamdi%2Fclean_arch_bookly_app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmoodhamdi%2Fclean_arch_bookly_app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmoodhamdi%2Fclean_arch_bookly_app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmoodhamdi%2Fclean_arch_bookly_app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mahmoodhamdi","download_url":"https://codeload.github.com/mahmoodhamdi/clean_arch_bookly_app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmoodhamdi%2Fclean_arch_bookly_app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31971489,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"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":["bookapi","clean","clean-architecture","cleanarchitecture","code","darktheme","dart","flutter","repositorypattern"],"created_at":"2024-11-18T03:06:33.712Z","updated_at":"2026-04-18T14:01:51.743Z","avatar_url":"https://github.com/mahmoodhamdi.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# clean_arch_bookly_app\n\nWelcome to the **clean_arch_bookly_app**, an innovative Flutter project dedicated to offering a seamless and captivating experience for exploring books sourced from the Google Books API. This project embraces a dark theme to provide an immersive reading environment and implements robust Flutter architecture following Clean Architecture principles with the Repository pattern.\n\n\u003e **Note:** This project is intended for learning and practicing Clean Architecture principles and is not suitable for production or deployment.\n\n## Screenshots\n\n### Dark Theme\n\n\u003cdiv align=\"center\"\u003e\n    \u003cimg src=\"assets/images/booklist.png\" alt=\"Book List\" width=\"200\"/\u003e  \n    \u003cimg src=\"assets/images/details.png\" alt=\"Details\" width=\"200\"/\u003e\n\u003c/div\u003e\n\n## Project Overview\n\n### Features\n\n- **Book Exploration:** Seamlessly browse a vast collection of books sourced from the Google Books API.\n- **Dark Theme:** Immerse yourself in an optimal reading environment with the exclusively designed dark theme.\n- **Book Details:** Access detailed information about each book, including synopsis, author details, and reviews.\n- **Book Preview:** Preview select pages of a book to get a glimpse before making a choice.\n- **Pagination:** Efficiently navigate through large sets of data with seamless pagination.\n- **Search Functionality:** Easily search for specific books or authors within the app.\n- **Favorites:** Save your favorite books for quick access later.\n\n### Tech Stack\n\n- **Flutter:** Harness the power of Flutter for cross-platform mobile development, ensuring a smooth and consistent experience.\n- **Clean Architecture:** Implement a scalable and maintainable codebase with Clean Architecture principles, dividing the project into distinct layers (Presentation, Domain, Data).\n- **MVVM Architecture:** Incorporate the Model-View-ViewModel design pattern within the Clean Architecture for organized and easily maintainable code.\n- **Repository Pattern:** Use the Repository pattern to abstract the data layer, providing a clean API for data access and manipulation.\n- **State Management:** Utilize efficient state management techniques for handling application state in a streamlined manner.\n- **Google Books API Integration:** Seamlessly integrate and retrieve book data from the Google Books API using efficient network requests.\n- **SOLID Principles:** Adhere to SOLID principles to ensure a robust and maintainable software architecture.\n\n### Project Structure\n\nThe project is divided into three main layers as per Clean Architecture principles:\n\n1. **Presentation Layer:** Contains the UI code and state management.\n   - **View:** Widgets and screens.\n   - **ViewModel:** Handles the presentation logic and interacts with the Use Cases.\n2. **Domain Layer:** Contains the business logic of the application.\n   - **Entities:** The core classes of the application.\n   - **Use Cases:** Interactors that contain the business logic and are called by the ViewModel.\n3. **Data Layer:** Manages data sources and repositories.\n   - **Repositories:** Interfaces defining the data operations.\n   - **Data Sources:** Implementations of data operations (e.g., API calls, local database).\n\n## Getting Started\n\nTo get a local copy of the project up and running, follow these simple steps.\n\n### Prerequisites\n\n- Flutter SDK\n- Android Studio / Visual Studio Code\n\n### Installation\n\n1. Clone the repo\n\n   ```sh\n   git clone https://github.com/your-username/clean_arch_bookly_app.git\n   ```\n\n2. Install Flutter packages\n\n   ```sh\n   flutter pub get\n   ```\n\n3. Run the app\n\n   ```sh\n   flutter run\n   ```\n\n## Usage\n\n- Browse through the list of books.\n- Click on a book to view its details.\n- Use the search bar to find specific books or authors.\n- Add books to your favorites list for quick access.\n\n## Contributing\n\nContributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.\n\n1. Fork the Project\n2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the Branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n---\n\n## Last Updated: 2023-07-09\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmahmoodhamdi%2Fclean_arch_bookly_app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmahmoodhamdi%2Fclean_arch_bookly_app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmahmoodhamdi%2Fclean_arch_bookly_app/lists"}