This is an external open-source GitHub repository imported into the WOCSOL Marketplace for discovery. The original repository owner is the primary creator.
Flutter Grocery Shopping App (Mobile App, Web App)
Flutter Grocery Shopping App (Mobile App, Web App)
# grocery_app Become a financial contributor - ### Table of Contents - [System Requirements](#system-requirements) - [Figma design guidelines for better accuracy](#figma-design-guideline-for-better-accuracy) - [App Navigations](#app-navigations) - [Project Structure](#project-structure) - [How you can do code formatting?](#how-you-can-do-code-formatting) - [How you can improve the readability of code?](#how-you-can-improve-the-readability-of-code) - [Libraries and tools used](#libraries-and-tools-used) - [Support](#support) ### System Requirements Dart SDK Version 2.17.0 or greater. Flutter SDK Version 3.0.0 or greater. ### Design System for better accuracy ### App Navigations Check your app's UI from the AppNavigation screen of your app. ### Project Structure After successful build, your application structure should look like this: ``` . ├── 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 c
Ask questions or discuss this product. New comments are reviewed before publishing.
Loading comments...