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.
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