File structure in a Fluter app.
When you create a new Flutter project, it builds the following directory structure. You can customize it later, but this is where you start.
┬ └ project_name ┬ ├ android - Contains Android-specific files. ├ build - Stores iOS and Android build files. ├ ios - Contains iOS-specific files. ├ lib - Contains externally accessible Dart source files. ┬ └ src - Contains additional source files. └ main.dart - The Flutter entry point and the start of a new app. This is generated automatically when you create a Flutter project. It is where you start writing your Dart code. ├ test - Contains automated test files. └ pubspec.yaml - Contains the metadata for the Flutter app. This is equivalent to the package.json file in React Native.
Search within Codexpedia
Custom Search
Search the entire web
Custom Search
Related Posts