I'm not even developing anything in Flutter right now and I still sat through this entire video 😅 Awesome tutorial man!
@tadaspetra4 жыл бұрын
haha glad you enjoyed it igor :)
@LeagueRandomPlayer4 жыл бұрын
Dude are you reading my mind? its like "oh man i have to learn isolates" and BOOM video, THANKS MAN!!!!
@tadaspetra4 жыл бұрын
Haha glad I could help
@antogalli2 жыл бұрын
Google listen to you! .... Always!
@MokRockets3 жыл бұрын
Basics basics basics, appreciate the simplicity. Thank you!
@tadaspetra3 жыл бұрын
That’s the goal. Thank you!
@PaulBrassington_flutter_expert2 жыл бұрын
Thanks from a Java developer who used threads and now using dart/flutter
@hawkybae4 жыл бұрын
Appreciate you taking the time to cover this topic. Cheers!
@tadaspetra4 жыл бұрын
I appreciate you watching 😊
@faizandarwesh7867 Жыл бұрын
That's awesome. Your explanation is so precise and simple.
@tadaspetra Жыл бұрын
Thank you so much 😊
@FilledStacks3 жыл бұрын
Dope! Quick, to the point and accurate. Subbed!
@tadaspetra3 жыл бұрын
Wow thank you FilledStacks!
@ivanyoed3 жыл бұрын
Hey Tadas. Thank you for your tutorials, they're very well made and are always a great support when looking to perform new and better practices in our applications.
@tadaspetra3 жыл бұрын
Thank you so much! I really appreciate it 😊
@calanm78802 жыл бұрын
Tadas, the YT algorithm is fantastically kind in recommending some videos I just need to watch: this is awesome cos it’s a subject I’ve shy-Ed away from, and you made it friendly and approachable 👍
@tadaspetra2 жыл бұрын
Thank you all mighty algorithm for showing my videos 😂
@garoono3 жыл бұрын
ur vdos tadas so amazing and simple to learn and exploring new topics makes it very intersting , and in the beginning little bit other than code appreciate ;]
@purushottampk45304 жыл бұрын
Excellent 👍 Love from india
@tadaspetra4 жыл бұрын
Thank you! Cheers!
@lpfboyka5612 жыл бұрын
finally!! the best explaination and example i found for isolate... thanks bro
@blank-vw2sb4 жыл бұрын
Everyone reading this comment, If you haven't left a comment, DO it. KZbin algorithm looks for video engagement. Help this awesome video reach the people who would appreciate it.
@hafeez-rana Жыл бұрын
nice explanation. thanks Tadas!
@hoekbrwr4 жыл бұрын
At least I learned now it exists! Might come in handy some time.
@hamzaiqbal7254 жыл бұрын
if you put your compress/decompress of large images or video editing logic in isolate you will feel good amount of difference in app's performance.
@tadaspetra4 жыл бұрын
Yes definitely. That’s a great use for it
@yashraut194 жыл бұрын
Great i heard about isolates for the first time ! And as always nice tutorial
@tadaspetra4 жыл бұрын
Awesome! It is good to know they exist in case you ever need it 😊
@etion19992 жыл бұрын
Thank you, Tadas!
@harysuryanto2 жыл бұрын
Very good explanation
@saqib39910 ай бұрын
Thanks. From the official docs it seemed like out of my scope concept. 😅
@rebarius4 жыл бұрын
Finally someone explained It easily in code ❤️ thx :)
@tadaspetra4 жыл бұрын
Glad I could help 😊
@SEGVeenstra3 жыл бұрын
Thank you, just what I needed!
@NaraAIApp3 жыл бұрын
Thanks Man, your explanation is best. REALLY REALLY REALLY HELPFUL.
@tadaspetra3 жыл бұрын
Glad it helped!
@tibfox3 жыл бұрын
Greeeeeat explaination! Thank you so much :) I wanna execute some custom logic which takes much time including multiple rest api calls inside an isolate so I can use the app while this is running. You opened my mind and now I will hop and read more about the send/receive ports
@aytunch4 жыл бұрын
Great video. Keep more coming.
@blank-vw2sb4 жыл бұрын
All I can say is it's awesome. ❤️
@tadaspetra4 жыл бұрын
Thank you 😊
@YouhanaSheriff3 жыл бұрын
u really r a great instructor
@tadaspetra3 жыл бұрын
Thank you so much 😊
@danumichael21433 жыл бұрын
Great video. Thanks a lot
@tadaspetra3 жыл бұрын
Thank you for watching
@abdulsalamaljamal77683 жыл бұрын
clear and simple thanks man
@abraiyan79843 жыл бұрын
Things no one is taking about. Thanks man.
@tadaspetra3 жыл бұрын
Thank you for watching!
@jalalhannan32434 жыл бұрын
This is great!
@Amandeep-kq5bz4 жыл бұрын
Awesome video
@tadaspetra4 жыл бұрын
Thank you 😊
@akshay60194 жыл бұрын
I once used isolate to generate blurhash.
@fluttterdev1k7 ай бұрын
the best
@rodrigogaxiola91464 жыл бұрын
Good!
@jrheisler4 жыл бұрын
Cool, I assume it would be very important if you were doing some server side dart. A lot simpler than I thought. Thanks!
@tadaspetra4 жыл бұрын
Would definitely be important for that, and glad to help 😊
@victorozigbu159411 ай бұрын
Heyy Tadas, thank you for the explanation, please can you also explain how to use the flutter blue plus package 🙏
@DartMitai4 жыл бұрын
thanks, what are your plans for the next videos? maybe you can show shelf+angulardart+postgresql+gRPC. Or is it too much?
@tadaspetra4 жыл бұрын
Those are some big topics. But soon I am planning to expand to not just flutter but coding overall
@DartMitai4 жыл бұрын
@@tadaspetra this is a really big topic, but also a unique one, because 99% of pseudo dart programmers read about this combination and run away in fear, it is more difficult than shooting content under a carbon copy about flutter
@techstudio73314 жыл бұрын
Thankyou AC 😎, Maybe ffi in easy manner just like this, next time?
@tadaspetra4 жыл бұрын
I’ll check it out
@akshaybengani3 жыл бұрын
I have to make multiple network calls in flutter and none of them will bring some data back to me, they are just for sending some data continuously somewhere and don't require async/await, they are also not a priority task even if they fail or comes error I don't care. I need to know if I don't use async await before a network call, how does it work in the flutter event loop does it wait and reduce UI performance Should I run them in separate Isolate threads or the event loop will process these events without dropping performance,
@FantasyOR3 жыл бұрын
Hi. how do you call "runCompute" function? do you use "await" or not?
@user-uq7zx5nc3t Жыл бұрын
Hey Tads, how ya doin? My flutter app is kind of awesome, and works great on my M1 ipad. Unfortunately, in a browser, it really sucks. Lots of IndexDB access, because I built it for offline first. Store users data collections as json and byte lists locally.
@SuperHansburger934 жыл бұрын
Can you use Isolate to do asynchronous rendering (like React's concurrent mode)? Like if I have a very large list to render with very complex items, can I prerender them in an Isolate to keep my UI responsive in the meantime?
@tadaspetra4 жыл бұрын
Damn. That's a good question. I feel like it should be possible, but I have not worked with this. Some one else has commented on the video saying they used it for blurhash which may be related. I am not sure
@LMrc5342 жыл бұрын
do I go through an isolate to run a foreground task?
@amircodes2 жыл бұрын
Sir, could you please create a video on the future of Flutter for new developers that wants to switch to. Companies are talking about Kotlin KMM. But why Google associate this huge resource and effort to bold flutter more and more. It doesn't make sense if google would abandon Flutter. I hope you see this comment.
@ITPROFESSIONAL4 жыл бұрын
made please another video for explaining recieveport and sendport and controlling the isolate. thanks
@kashishkhullar95423 жыл бұрын
Hey man. Thanks for this video. I am working on an app that makes REST calls in in separate isolate and I want it to continue when the app goes to background. But what I wanna achieve is that when the app comes back to foreground or I open the app again, then I do not want the isolate to run. I want to terminate it and before closing the app, I want to restart it. Is there a way to get the instance of the isolate or some kind of id or identifier to get access to an already running isolate and then send messages to it or kill it. And if there is what is the best way to save such id or instance of the isolate. Appreciate your help.
@tadaspetra3 жыл бұрын
Not too sure about this. I haven’t dived deep into isolates since this video. Maybe you can ask in the discord link in description
@edinliu95563 жыл бұрын
Why isolateFunction can't be async function?
@talatkuyuk65564 жыл бұрын
How do you know that kind of edge features, really I aploud you.
@tadaspetra4 жыл бұрын
Haha I do a lot of research before these 😊
@rebarius2 жыл бұрын
Isolate isn't working for web 😭
@mruduladdipalli54173 жыл бұрын
Go to video for Isolates
@tadaspetra3 жыл бұрын
thank you so much!
@xamael19892 жыл бұрын
Thanks but can you show this in general context without using flutter
@tadaspetra2 жыл бұрын
Most languages have a different approach than this. But I might be able to make a video about general multi threading