एक 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)
