एक Flutter project में एक मानक संरचना होती है — Dart code, platform-specific code, assets, और configuration के लिए directories के साथ। संरचना और मुख्य files (विशेष रूप से pubspec.yaml और lib/) को समझना Flutter apps में navigate करने और बनाने के लिए आवश्यक है।
मुख्य directories और files
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)
