Ένα Flutter project έχει μια standard δομή — με directories για Dart code, platform-specific code, assets, και configuration. Η κατανόηση της δομής και των key files (ειδικά pubspec.yaml και lib/) είναι απαραίτητη για την πλοήγηση και την κατασκευή Flutter apps.
Key directories και files
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)
