jesuswhe.blogg.se

Blocs app structure
Blocs app structure









blocs app structure blocs app structure

This is an option file provided for developer reference. Pubspec.yaml is an essential file containing all the flutter project related information like project name, project details, sdk version details, third packages or dependencies used in the project, assets(like images, files, fonts) you want to use in your project etc. This file conatins detailed information(like, dependency name, description, meta, source, version and many more information) about all the dart packages included in your flutter project. This file contains configuration information about the packages and modules used by the IDE. packages file contains information about all the dart packages included inside the external libraries in your flutter project. metadata file contains the information about the flutter properties like stable sdk channel, project type etc.packages This file lists the information about third party packages you uses in your flutter project.gitignoreĪs name suggests, this hidden file stores lists of different files which you don’t want to upload to your git system while pulling or pushing your source code to git tadata By default, it will contain a dart file named as widget_test.dart for software testing.flutter-plugins This package will contain files for writing and running software tests to ensure that your flutter app is working correctly before release. So that you can test and run something you can interact in your flutter app. Also, lib is the package in which you are going to create and write all the dart files (as flutter uses dart as its development language) containing your app source code.īy default, main.dart file will have some code written in it (you can say this a flutter’s hello world application).











Blocs app structure