Un proyecto de Flutter tiene una estructura estándar — con directorios para código Dart, código específico de plataforma, recursos y configuración. Entender la estructura y los archivos clave (especialmente pubspec.yaml y lib/) es necesario para navegar y construir aplicaciones de Flutter.
Directorios y archivos clave
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)
