Dart Control & Looping Statements - Dart Programming for Beginners

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 ก.พ. 2020
  • 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 -
    androidmonks.com/
    Social Media
    Follow me on Twitter: / diputsc
    Follow my Facebook: / androidsmonk To improve my productivity
    Everyday Planner - amzn.to/30HqtsU
    Fidget Spinner - amzn.to/3kCWIBs
    Tech I use
    Acer 32 Inch Monitor- amzn.to/33CT5p0
    Laptop - MacBook Pro 15 (Primary)
    Dell XPS Windows Laptop(Secondary) - amzn.to/30GQN6k
    Filming Gears
    Canon EOS R - amzn.to/2XKNzNb
    Maono Au 400 - amzn.to/3gMH3gs
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 5

  • @sushantbhattarai7929
    @sushantbhattarai7929 4 ปีที่แล้ว

    awesome

  • @rishabhanand4270
    @rishabhanand4270 4 ปีที่แล้ว

    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.

  • @barathirajendran5607
    @barathirajendran5607 7 หลายเดือนก่อน

    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 .

  • @SAGskills
    @SAGskills 3 ปีที่แล้ว

    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

  • @Kidsfunchannel-p9f
    @Kidsfunchannel-p9f 3 ปีที่แล้ว +1

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