FLUTTER ECOSYSTEM

phamdinhduc795397/flutter-getx-clean-architecture

一個使用 GetX 的 Flutter 清潔架構。

flutter-getx-clean-architecture 專案封面
Stars
222
Forks
87
最近推送(UTC)
2022年10月24日
專案狀態
未封存
Duc Pham GitHub avatar
GITHUB User

Duc Pham ↗

I'm iOS developer and Flutter developer.

Viet Nam
語言DartHTMLRubySwiftKotlinObjective-C

使用的依賴

依賴清單 10 項

所在榜單

原始 README

以下為英文專案原文快照,最新內容請造訪 GitHub。

展開 / 收合專案 README

flutter-getx-clean-architecture

A Flutter Clean Architecture Using GetX.

Work Flow

alt text

Project Structure

|-- lib
    |-- main.dart
    |-- app
        |-- core
            |-- usecases
        |-- config
            |-- app_constants.dart
            |-- app_colors.dart
        |   -- app_text_styles.dart
        |-- services
        |-- util
        |-- types
        |-- extensitons
    |-- data
        |-- models
        |-- repositories
        |-- providers
            |-- database
            |-- network
                |-- apis
                |-- api_endpoints.dart
                |-- api_provider.dart
                |-- api_representable.dart
    |-- domain
        |-- entities
        |-- repositories
        |-- usecases
    |-- presentation
        |-- controllers
        |-- pages
        |-- views
        |-- app.dart

Features

  • Integrating Unit Test.
  • Create an easy to use API provider with GetConnect.