Flutter პროექტს აქვს სტანდარტული სტრუქტურა — დირექტორიებით Dart კოდისთვის, პლატფორმის სპეციფიკური კოდისთვის, აქტივებისთვის და კონფიგურაციისთვის. სტრუქტურის და ძირითადი ფაილების გაგება (განსაკუთრებით pubspec.yaml და lib/) აუცილებელია Flutter აპლიკაციების ნავიგაციისა და აგების জন্য.
ძირითადი დირექტორიები და ფაილები
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)
