Dart Control & Looping Statements - Dart Programming for Beginners

preview_player
Показать описание
Control Statements in Dart are really important for creating any basic flow of the program. The definition of a program is something that happens from top to bottom. We are defining different steps in this fashion only. However, where there have to be decisions taken inside these programs, that's when Control Statements come into picture.
Control Statements and Looping Statements are effective in deciding where and how the data should flow.
This video covers all the important Control Statements in Dart Programming Language.

Check out all the Files for the series updated here -
Link to my blog -

Social Media

Tech I use
Laptop - MacBook Pro 15 (Primary)

Filming Gears
Рекомендации по теме
Комментарии
Автор

Do a app clone build challenge using flutter. App can be something simple like splitwise, or something complicated like slack. For the backend you can probably use Firebase Authentication and firebase cloud storage, so you can go serverless basically. Also include some cool UI tips, that would be icing on the cake.

rishabhanand
Автор

void main() {
int a = 0;
int b = 20;
if (a < b)
{
for (int c = 1; c <= b; c++)
{
print(c);
}
}
else
{
print(a);
}
}

It will print count from 1 to 20...

Allabouteducation-xj
Автор

void main() {
var x=2;
if(x==1){
for (int i = 0; i < 5; i++) {
print('hello {i + 1}');
}

}
else{
switch(x){
case 2 : print("hello handsome ");

}

}
}


First of all i tell that thanks for this video and effort r great ur explanation and slides show presentation are very clear .Im hats off to your videos. I do the above task i think logic of code is not correct but i do this with two loops.I don't know its right or wrong pls dont worry of your efforts of taught lesson its all about my mistakes .

bharathindia-iu
Автор

hi how are you..

we want videos on flutter .there is lot of videos on youtube who teaching development pf apps in flutter ..

but we want such a person who can start from scratch that means you should explain what is scaffold on screen of mobile.. where is container on screen .. where is row in screen .. where is where is child on screen .. how to go after click on submit button to next screen .. all these please telll

SAGskills
visit shbcf.ru