I've learned loops from many channels and even watched hours of lectures but in this video I've almost cleared all of my concepts in just 50 minutes + i watched this video in one shot, lol, I can't believe on my self
hello Guys jo log new viewers hai unko main bta dun ki joh 1:15:00 main jo fixed list ki baat ho rhi hai uska abb aik new syntax aa chuka hai market main yeh wala List larr = List.filled(3, 0); larr[0] = 10; larr[1] = 20; larr[2] = 30; print(larr[1]); yeh wala code guys execute hoga 2024 ke new update ke karan
Maja aa gaya sir...tussi great ho....ajj tak mujhe OOP samaj nahi aya tha...lekin ye dekhne ke baad atleast dart mei OOP ka concepts samajh aa raha hai🤗
syntax has been changed in newer version of dart to make it null safe... you can try this.. var larr = List.filled(4, 0); larr[0] = 10; larr[1] = 20; larr[2] = 30; larr[3] = 40; larr.forEach(print);
Sir. Step wise web development project handling ke upar ek video banaiye... RUclips pe koi video nhi h uske upar ... Pahle to ye bataiye ki website projects ko kaise manage karte hain koin koin sa step se ... Ur dusra ye bataiye ki kaise har ek chij professional way se hota h ... Professionally ek project me kya kya use hoti h i mean git use hota hoga backup ke liye fir codes ko kaise rakha jata h fir kaise render karte hain pura management ka process bataiye... Do video banao sir... Aap ka bahut abhar rahunga...
vishal bhai jaisa apne bataya ki cascade notattion@(45.25 min) ki yadi multiple things operation karni ho but code k hisab se output nahi aya i.e. var str="VISHAL"; print(str..toLowerCase()..substring(2)); ---output in video---> vishal but i have doubt as per code output should be vishal (as per str.toLowerCase() ) shal (as per str.substring() ) this is in normal condition if i use two print method for each as per print(str..toLowerCase()..substring(2)); output should be same or if not then output will "shal" may be( i doubt) i try this code print(str.toLowerCase().substring(2)); output was "shal" i try as like ( conditional op.) i got the what we expect cascade notation did i wrong or true i glad if you reply me im in bit confuision. please clerify me bhai bhai main apko galat nahi thah ra raha ki apne galat likha but main thoda confuse hu espr to socha puchhle... ki kya jo maine try kiya wo galat hai cascade not. ke respect. bhai apki video bahaot hi informative hai i really like it keep it on..
Great 👍 dart and flutter series. I hav a question is there anything like flutter UI developer only or flutter developer only those who know complete mobile app cycle from UI development, database , api integration upload on platform etc
hi I wanted to develop an app in flutter and dart, my logic building concepts aren't clear, just a beginner and want your help in its development also I already have the full layout ready just need implementation with your help in collaboration .even little knowledge is ok but should be determined
Hello sir aap esper ek video bana hai konsa what is testing or use of testing and project ka kaise bana hai project ka documents kaise bana hai please sir video juror upload karna please sir ji
can you teach us flutter app small project and use google maps apis ? example like user registration and login -logout system .. send request for service and get location with notification ? can u tutorial 10 .50 videos fully function with firebase android studio???
Hello sir , I'm having an issue with payment gateway part5 of this playlist. My order data is not updating in order table after adding payu option and user get logout automatically after payment.sir please solve my this issue I'm stuck at this part very badly. I will be very thankful to you. I have mailed you my problem at at your email id .please help 😢😢😭
I've learned loops from many channels and even watched hours of lectures but in this video I've almost cleared all of my concepts in just 50 minutes + i watched this video in one shot, lol, I can't believe on my self
hello Guys jo log new viewers hai unko main bta dun ki joh 1:15:00 main jo fixed list ki baat ho rhi hai uska abb aik new syntax aa chuka hai market main yeh wala
List larr = List.filled(3, 0);
larr[0] = 10;
larr[1] = 20;
larr[2] = 30;
print(larr[1]);
yeh wala code guys execute hoga 2024 ke new update ke karan
AP KA SAMJHANAY KA ANDAZ, VOICE PITCH, PRONUNCIATION, BAA KAMAAL HE , KHUDA KA GIFT HE YE COMMUNICATION ABILITY .
Very well-prepared tutorial, the best thing I found; I have not wasted a single second of the video. Well done.
Maja aa gaya sir...tussi great ho....ajj tak mujhe OOP samaj nahi aya tha...lekin ye dekhne ke baad atleast dart mei OOP ka concepts samajh aa raha hai🤗
Best video for beginners
Is se simple koi nai samjha sakta 👍
thank you 😊
Thanks for explaining everything in hindi, because apne programming ka base bohot achchhe se samjhaya. Thanks a lot Vishal sir.
28:17 operators
52:16 control structures
1:04:22 loops
1:13:41 collections
Itna good course you tube per nahi dekha tha
Thanks Deepak
Salute sir, your explanation is awesome... I love your teaching level... ♥️ ❤️ 💕
I'm late 1 year to teach from you
at time line 1:25:00 , their are List larr=[10,20,30,40] ; but output not come from this
syntax has been changed in newer version of dart to make it null safe... you can try this..
var larr = List.filled(4, 0);
larr[0] = 10;
larr[1] = 20;
larr[2] = 30;
larr[3] = 40;
larr.forEach(print);
Sir. Step wise web development project handling ke upar ek video banaiye... RUclips pe koi video nhi h uske upar ... Pahle to ye bataiye ki website projects ko kaise manage karte hain koin koin sa step se ... Ur dusra ye bataiye ki kaise har ek chij professional way se hota h ... Professionally ek project me kya kya use hoti h i mean git use hota hoga backup ke liye fir codes ko kaise rakha jata h fir kaise render karte hain pura management ka process bataiye... Do video banao sir... Aap ka bahut abhar rahunga...
Very well explained 👌
First time i understand functions and oop concepts.
Hats off to you sir🤠
apka samjhane ka tarika bahot achha he sir😊😊
Thank u sir Kaas aise humare teacher or language v padhate😭
vishal bhai jaisa apne bataya ki cascade notattion@(45.25 min) ki yadi multiple things operation karni ho but code k hisab se output nahi aya i.e.
var str="VISHAL";
print(str..toLowerCase()..substring(2));
---output in video---> vishal
but i have doubt as per code output should be
vishal (as per str.toLowerCase() )
shal (as per str.substring() )
this is in normal condition if i use two print method for each
as per print(str..toLowerCase()..substring(2)); output should be same or if not then output will "shal" may be( i doubt)
i try this code print(str.toLowerCase().substring(2)); output was "shal" i try as like ( conditional op.) i got the what we expect cascade notation did i wrong or true i glad if you reply me im in bit confuision. please clerify me bhai
bhai main apko galat nahi thah ra raha ki apne galat likha but main thoda confuse hu espr to socha puchhle... ki kya jo maine try kiya wo galat hai cascade not. ke respect.
bhai apki video bahaot hi informative hai i really like it keep it on..
this way of teaching is best
1:38 functions
2:00 OOP's class and objects
2:11 constructor
Great tutorial Sir, Thank you so much❤
Very helpful. Thank you for making this video. Appreciations.
Welcome
Good work. Well wisher from Pakistan.
Thanks
Best explained sir awesome thank you so much ❤️
* first time I understand Function love from Bangladesh*
Best of best teacher ever
sir bht acha course bnaya ha
Thanks Adil
Best vedio tutorial all in one👌👌👌👌👌👌👌👌👌
Thanks Karan
First comment First view
This happen when suggestions are better than notification
Thanks Anshul
Cascade notation is not applied in your video and in the conditional operator. You didn't explain about the '??' how this will work
3rd view+3rd comment.
Amazing sir. Thank you
Welcome and Thanks
Thanks Sir it is Very useful video for me you will get soon 1Million Subscribers Insha'Allah!
Thanks vishal ji
Thanks, bro now I become your Subscriber
thank you sir the video is great
Sir, aap ache kar reha ha, Thanks 🙏
Welcome
Animesh
Are you open for taking up new projects ?
Gud
Great 👍 dart and flutter series. I hav a question is there anything like flutter UI developer only or flutter developer only those who know complete mobile app cycle from UI development, database , api integration upload on platform etc
Thank you vishal
Best explanation
Maza a gya sir 👍🏻
Great
Hello sir iska next video kaun sa hai? And really superb and easy explaination thanks
Thanks nice video , good explain ...but if you use visual code then you put for downlow link but you explains very easy language
Sir new new industry ke example wale project sikhaoona
vishal bhai thoda ap ek baar a=15, b=19 ka ^ samjha sakter using 128,64... chart pr
Bitwise representation:
128 64 32 16 8 4 2 1
a=15 0 0 0 0 1 1 1 1
a=19 0 0 0 1 0 0 1 1
c=a^b 0 0 0 1 1 1 0 0
c=28
Nice videos sir,,,php rest api ki bhe series bna dijiye sir..
Jaldi Arun aayega Video API pe
great job
hi I wanted to develop an app in flutter and dart, my logic building concepts aren't clear, just a beginner and want your help in its development also I already have the full layout ready just need implementation with your help in collaboration .even little knowledge is ok but should be determined
Thanks Thanks Thanks
Most Welcome
finest and well presented tutorial
Well Done👍❤️
Sir cascade notation ka output nhi dekhya apne
best explanation sir
Thanks for liking
Sir Follow-Unfollow System ka video bana dijiye PHP main
Noted Sunny
nice
Thanks
Sir easy explain but ye sab ka app development main practical use kese karte hey ye koi nahi bata ta.
Hello sir aap esper ek video bana hai konsa what is testing or use of testing and project ka kaise bana hai project ka documents kaise bana hai please sir video juror upload karna please sir ji
Noted Tarun
can you teach us flutter app small project and use google maps apis ? example like user registration and login -logout system .. send request for service and get location with notification ? can u tutorial 10 .50 videos fully function with firebase android studio???
Vishal ji aap dartpad ka full video kb bna rahe hai sir aap ka video bahut achha hota
Please update List function. because it's null empty
Mytimestamp 2:07:40
Thanks sir
good
same as @45:25, you havew used cascade, but not output come as per coding
Abstraction discussed in too shortly need more details
SIR how much time should take to learn for fresher
Similar to python language easy to understand
Hello sir. I want to ask about an error during installation. I ll send u screenshot. Kisme bhej sakti hu?
hey, did you get rid of that error? I can help btw
Array is different thing than list bro ...
Fluuter 3 का वीडियो लाइए
Sirf syntax batadiya output???
Next video kb ay gii?
Nice video content sir , very helpful
Please start a project on social media app like ( facebook+ messenger ) clone
Thanks and Noted Sayak
sir data basek lecture b bnaen gye flutter k sath
Ji haan
@@ProgrammingwithVishalsir fluter ma jo database use hoti ha us k tutorials b bnaen
Sir in our php ecommere project I am adding image but it's not showing in product.php page what is the problem pls explain
Check connection.inc.php file and set path there
void main() {
var str =" romancenode ";
var l=str.length;
print(l);
}
in my case this is print 14
why sir
in yore case show the error
Flutter install nhi ho rhi h kuch issue Aa rhi h
Sir kya app han hame flutter se tiktok clone banana sikhao ge kya?
Noted
I have a bit of confusion in Cascade notation
Sir laravel ya ionic me project start kariye naa
Noted
When flutter will be started
Check ruclips.net/p/PLWCLxMult9xeI3LwrZ6yHCg2kAF3dZoWi
Sir. 'Bitwise, 'ka bukhar dimag me nahin chad Raha hai 😂😀😀😀🤣🌡️❔
Mosalsal esi badi video dekna moshkil hojata ha. Kindly video ko categorize kary. Thanks
20 number view
Sir how long does it take to learn dart language ?
Intaaajaaaar ho rahaaahaa hey ,, flutter ka project suru honeeyy kaaa pyaaasss baadd Rahaa hey,,
Sir ab auur naa taddpayiea
Deepak please check ruclips.net/p/PLWCLxMult9xeI3LwrZ6yHCg2kAF3dZoWi
Hello sir , I'm having an issue with payment gateway part5 of this playlist.
My order data is not updating in order table after adding payu option and user get logout automatically after payment.sir please solve my this issue I'm stuck at this part very badly. I will be very thankful to you. I have mailed you my problem at at your email id .please help 😢😢😭
Please check ruclips.net/video/-6HZ3Kb6dEQ/видео.html
java compiling eror arha hy
Hello sir
Hello Tarun
bitwise bilkul samagh ni aya
bhai mujhe list me problem ho rhi h
56min after your voice comes low that i can't hear properly
Cascade notation BKWAS tha not workign at all
syntax changes with version dumbo...! read docs.
Add time stamps
Hi
Hello Deepak
@@ProgrammingwithVishal good morning
Vishal sir apka mobile no de skte ho kya please
🙏🙏
Sir apka number mil
Skta hain kal mera exam hain agr app kra do to
nice