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)
