- System requirements
- Figma design guidelines for better UI accuracy
- Check the UI of the entire app
- Application structure
- How to format your code?
- How you can improve code readability?
- Libraries and tools used
- Support
Dart SDK Version 2.18.0 or greater. Flutter SDK Version 3.3.0 or greater.
Read our guidelines to increase the accuracy of design-to-code conversion by optimizing Figma designs. https://docs.dhiwise.com/docs/Designguidelines/intro
Check the UI of all the app screens from a single place by setting up the 'initialRoute'Β Β to AppNavigation in the AppRoutes.dart file.
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 static constant class file
β βββ utils - It contains common files and utilities of the application
βββ presentation - It contains widgets of the screens
βββ routes - It contains all the routes of the application
βββ theme - It contains app theme and decoration classes
βββ widgets - It contains all custom widget classes
- if your code is not formatted then run following command in your terminal to format code
dart format .
Resolve the errors and warnings that are shown in the application.
- BLoC - State management https://bloclibrary.dev
- cached_network_image - For storing internet image into cache https://pub.dev/packages/cached_network_image
If you have any problems or questions, go to our Discord channel, where we will help you as quickly as possible: https://discord.com/invite/rFMnCG5MZ7