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.