एक Flutter प्रोजेक्टको मानक संरचना हुन्छ — Dart कोड, प्ल्यातफर्म-विशिष्ट कोड, assets, र कन्फिगरेसनको लागि डिरेक्टरीहरू सहित। संरचना र मुख्य फाइलहरू (विशेषगरी 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)
