ஒரு Flutter project க்கு standard structure உண்டு — Dart code, platform-specific code, assets, மற்றும் configuration க்கான directories உடன். Structure மற்றும் key files (خاص்ஹ்ப்பாக pubspec.yaml மற்றும் lib/) ஐ புரிந்துகொள்ளுதல் Flutter apps ஐ navigate மற்றும் build செய்வதற்கு அপ்பேக்ஷனமாக இருக்கிறது.
Key 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)
