Tá struchtúr caighdeánach i bpróiseacht Flutter — le comhad-stórais (directories) do chód Dart, do chód ar leith do dhíreach an ardán, do shócmhainní (assets), agus do rianathchoiriú (configuration). Tá sé riachtanach tuiscint a bheith agat ar an struchtúr agus ar na príomhchomhaid (go háirithe pubspec.yaml agus lib/) chun a bheith ábalta a bhogadh i dtimpeallacht Flutter agus aipeanna Flutter a thógáil.
Príomh-chomhad-stórais agus príomhchomhaid
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)
