Skip to main content

Quick Start

Get GreenCart up and running on your device in under 5 minutes.

:::info Prerequisites This guide assumes Flutter SDK is already installed on your machine. If not, follow the full Installation Guide first — it takes about 15 minutes. :::


Step 1 — Extract the Downloaded Files

After purchasing from CodeCanyon, you will receive a .zip file. Extract it anywhere on your computer.

hana-go-v1.0.0/
├── hana_go/ ← Your main Flutter project
├── hana_go_docs/ ← This documentation site
└── README.pdf ← Quick reference card
important

Always work inside the hana_go/ folder — that is your Flutter project root.


Step 2 — Open the Project

  1. Open VS Code
  2. Go to File → Open Folder
  3. Select the hana_go/ folder and click Open
Opening the project in VS Code
🔍 Hover to zoom

Step 3 — Install Packages

Open the terminal inside your editor and run:

flutter pub get

Wait for it to finish. You should see:

Resolving dependencies...
Got dependencies!
flutter pub get output

Step 4 — Run the App

  1. Click the Run and Debug icon in the left sidebar, or press Ctrl+Shift+D
  2. Select your emulator or physical device from the dropdown at the top
  3. Click the green ▶ Run button, or press F5
  4. Wait 60–90 seconds for the first build to complete
Run and Debug panel

Your app should now look like this:

GreenCart running on device

:::tip Hot Reload and Hot Restart

  • Press r in the terminal → Hot Reload — updates the UI instantly, keeps app state
  • Press R in the terminal → Hot Restart — full restart, resets state — use after logic or controller changes :::