⚠️ Make sure Flutter CLI is installed.
- Clone this repository:
git clone https://github.com/cuongceg/green-circle.git
- Install all dependencies (libraries):
flutter pub get
- Run the project:
flutter run
Using this command, the terminal will look somthing like this:
Connected devices:
Windows (desktop) • windows • windows-x64 • Microsoft Windows [Version 10.0.22621.2134]
Chrome (web) • chrome • web-javascript • Google Chrome 116.0.5845.187
Edge (web) • edge • web-javascript • Microsoft Edge 116.0.1938.76
[1]: Windows (windows)
[2]: Chrome (chrome)
[3]: Edge (edge)
Please choose one (or "q" to quit):
If you have an Android virtual device, or an Android Device connected via USB that enabled USB Debugging, it will show up in the connected devices as well.
Running the app on mobile devices is recommended.
├── android/ - Contains build artifacts for Android
├── assets/ - Contains static files (images, videos, audios)
├── ios/ - Contains build artifacts for iOS
├── lib/ - Contains source code
├── models/ - Contains classes of real-world objects
├── pages/ - Contains widgets represented as pages or screens
├── e_commerce/ - Contains e_commerce screens
├── wrapper is a listen for auth changes screen
├── mapbox/ -Contains map screens
├── services/ - Contains classes controll models
├── widgets/ - Contains components
├── product_widgets - Contains product components
├── home_slider.dart is image slider for banner in home
├── nav_bar.dart is top navigator component in home.dart
├── const_value.dart - Contains const value and methods
├── firebase_options.dart - Contains current platform for Firebase
├── main.dart - Entry point (code starts here)
├── macos/ - Contain build artifacts for macOS
├── test/ - Contains code for testing
├── web/ - Contains static web files (HTML, CSS)
├── analysis_options.yaml - Contains rules for linter (flutter_lints)
├── pubspec.lock - Contains exact, locked version of dependencies
├── pubspec.yaml - Contains approximate version of dependencies
├── README.md - This documents