Flutter Tips - 01

If you want to remove the debug on from your emulator/Simulator

In Android Studio

Open -> Flutter inspector -> More actions -> Hide debug mode banner



In Flutter, we don't define all images in pubspec.yaml file.

flutter:
  uses-material-design: true
  assets:
    - images/

because from images folder, you access all images from there. 

Also don't forget, In .yaml make a string intent very careful.

every two space of next line should be considered as child.

yaml is human readable data serialization language, not markup language. It's usually used on configure the files. 

Comments

Popular posts from this blog

Flutter Bloc - Clean Architecture

What's new in android 14?

Dependencies vs Dev Dependencies in Flutter