Projekt Flutter má standardní strukturu — s adresáři pro kód Dart, kód specifický pro platformu, assety a konfiguraci. Pochopení struktury a klíčových souborů (zvláště pubspec.yaml a lib/) je nezbytné pro navigaci a vytváření Flutter aplikací.
Klíčové adresáře a soubory
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)
