Een Flutter-project heeft een standaard structuur — met mappen voor Dart-code, platformspecifieke code, assets en configuratie. Het begrijpen van de structuur en belangrijkste bestanden (vooral pubspec.yaml en lib/) is noodzakelijk voor het navigeren en bouwen van Flutter-apps.
Belangrijkste mappen en bestanden
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)
