Skip to content

mahmoudmavia19/cece

Repository files navigation

cece

System requirements

Dart SDK Version 2.18.0 or greater. Flutter SDK Version 3.3.0 or greater.

Application structure

After successful build, your application structure should look like this:

.
├── android                         - It contains files required to run the application on an Android platform.
├── assets                          - It contains all images and fonts of your application.
├── ios                             - It contains files required to run the application on an iOS platform.
├── lib                             - Most important folder in the application, used to write most of the Dart code..
    ├── main.dart                   - Starting point of the application
    ├── core
    │   ├── app_export.dart         - It contains commonly used file imports
    │   ├── constants               - It contains all constants classes
    │   ├── errors                  - It contains error handling classes                  
    │   ├── network                 - It contains network-related classes
    │   └── utils                   - It contains common files and utilities of the application
    ├── data
    │   ├── apiClient               - It contains API calling methods 
    │   ├── models                  - It contains request/response models 
    │   └── repository              - Network repository
    ├── localization                - It contains localization classes
    ├── presentation                - It contains widgets of the screens with their controllers and the models of the whole application.
    ├── routes                      - It contains all the routes of the application
    └── theme                       - It contains app theme and decoration classes
    └── widgets                     - It contains all custom widget classes

How to format your code?

  • if your code is not formatted then run following command in your terminal to format code
    dart format .
    

How you can improve code readability?

Resolve the errors and warnings that are shown in the application.

Fonts

We were unable to find the following Fonts, Please add manually to assets/fonts

GilroySemiBold.ttf
GilroyMedium.ttf
GilroyRegular.ttf
GilroyBold.ttf
AdamGorryInline.ttf
PilatExtendedHeavy.ttf
SFUIDisplayBold.ttf
SFUIDisplayRegular.ttf

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages