6 /100 DaysOfFlutter: Introduction to flutter Codebase
Knowing about flutter creating the project, folderstruture, package manager, YAML
Apr 28, 20222 min read112

Search for a command to run...
Articles tagged with #newbie
Knowing about flutter creating the project, folderstruture, package manager, YAML

Dart Control Startment Controlling the flow of your application is a key part of any programme, controlling flow means handling, what your programme can perform, do, and act. (Decision making) 🧠 if/else if (condition) { // do something } else { ...

1/100DaysOfFlutter : Dart Basics/Final v/s Const Variables in dart var: variable can be reassigned. final: variable can not be reassigned. const: constant variable. Different between Final and Const in a easy way final name;✅ // you assign value ...
