Një projekt Flutter ka një strukturë standarde — me direktoria për kodin Dart, kodin specifik për platformën, asetet dhe konfigurimin. Kuptimi i strukturës dhe i skedarëve kryesorë (veçanërisht pubspec.yaml dhe lib/) është i nevojshëm për navigimin dhe ndërtimin e aplikacioneve Flutter.
Direktoria dhe skedarët kryesorë
my_app/
lib/ → your DART CODE lives here (the heart of the app)
main.dart → the ENTRY POINT (the main() function; app starts here)
pubspec.yaml → project config: DEPENDENCIES, assets, metadata (very important)
android/ → Android-specific native project/config
ios/ → iOS-specific native project/config
web/ windows/ etc. → other platform folders
test/ → tests
assets/ → images, fonts, etc. (declared in pubspec.yaml)
