FLUTTER ECOSYSTEM

phamdinhduc795397/flutter-getx-clean-architecture

GetX का उपयोग करके एक Flutter स्वच्छ आर्किटेक्चर।

flutter-getx-clean-architecture प्रोजेक्ट कवर
Stars
222
Forks
87
अंतिम पुश (UTC)
24 अक्टू॰ 2022
प्रोजेक्ट स्थिति
सक्रिय
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.