Skip to content

Latest commit

 

History

History
64 lines (41 loc) · 1.45 KB

README.md

File metadata and controls

64 lines (41 loc) · 1.45 KB

Owanto'o 🛍

owanto_app

Owanto'o is a e-commerce platform template This project only contains the front end part and is not connected to a database. The state management has been implemented and login,sign up, checkout pages implemented.

1.Template

RPReplay_Final1641849403.mp4

2.Download the repository ⬇

Download the files or git clone the repository.

git clone

Folder structure

the project folder structure is the following:

.
├── src                    
│   ├── const               # contains all the constants
         └── ...
│   ├── data               # data layer 
         └── model
         └── service
│   ├── router               # navigation 2.0
         └── ...
│   ├── view               # pages and screens
         └── screen
              └── component
              └── widgets
              └── ...
│   ├── viewmodel         
│       └── ...
└── ...

Run project

to run the project follow the following commands

> flutter pub get
> flutter clean 
> flutter run 

The project starts in main.dart.

void main() {
  runApp(MyApp());
}