FluCommerce
1.0.0
플러터에서 더 많은 것을보고 싶다면 저장소를 별표하십시오.

이것은 플러터 응용 프로그램의 문서입니다. 시작하는 데 필요한 모든 정보가 포함되어 있고 앱을 변경합니다.
다트 SDK 버전 2.17.0 이상. Flutter SDK 버전 3.0.0 이상.
.
├── android - contains files and folders required for running the application on an Android operating system.
├── assets - contains all images and fonts of your application.
├── ios - contains files required by the application to run the dart code on iOS platforms.
├── lib - Most important folder in the project, used to write most of the Dart code.
├── main.dart - starting point of the application
├── core
│ ├── app_export.dart - contains commonly used file imports
│ ├── constants - contains all constants classes
│ ├── errors - contains error handling classes
│ ├── network - contains network related classes
│ └── utils - contains common files and utilities of project
├── data
│ ├── apiClient - contains API calling methods
│ ├── models - contains request/response models
│ └── repository - network repository
├── localization - contains localization classes
├── presentation - contains all screens and screen controllers
│ └── screens - contains all screens
├── routes - contains all the routes of application
└── theme - contains app theme and decoration classes
└── widgets - contains all custom widget classes
dart format .
응용 프로그램에 표시된 오류 및 경고를 해결하십시오.