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.