Very nice tutorials, practical approach helps us to understand the concepts clearly. Nice efforts. I like your tutorials.
@AppDeveloperPoint Жыл бұрын
Glad it helped You
@siddharthkothari007 Жыл бұрын
Hi Nilesh, amazing content explained very elegantly. Keep up the good work.
@AppDeveloperPoint Жыл бұрын
Keep watching
@maulikshah64612 ай бұрын
DO you have dependacy injection video?
@prasadreddyvakamalla1285 Жыл бұрын
Hi @Nilesh I am big fan of you the you are explaining is fabulous thank you so much for making such a great videos. ❤❤❤
@AppDeveloperPoint Жыл бұрын
Thank you so much
@sudhakarreddy8760 Жыл бұрын
Very nice explanation. Thanks a lot!💐💐💐
@AppDeveloperPoint Жыл бұрын
Keep watching
@ranganathchenna45592 жыл бұрын
Good explanation 👍🏾👏🏼😊
@sakirsaiyed492 жыл бұрын
Hello App Developer, Amazing content as always but voice in this video is little bit low and difficult to hear.. if possible please increase volume, many thanks :)
@AppDeveloperPoint2 жыл бұрын
Ok next time
@ashwaniyadav40542 жыл бұрын
Thanks for the video
@AppDeveloperPoint2 жыл бұрын
Our pleasure!
@Mr_Beardd_boi_vlogs2 жыл бұрын
used your tutorial var Index : int = 0 How do i access local var variable inside . i get this issue inside Task{ let task = await callMyFunction( Index) } Index += 1 this error i get kindly help out Reference to captured var 'Index' in concurrently-executing code
@AppDeveloperPoint2 жыл бұрын
Thanks for going through the tutorial. If you want to use parameter inside Task, it has to be constant to avoid data race condition. So in your case create two function one which gives you index and mke the variable as let and second function should modify your index, instead of modifying directly here