Ravi Patelravipatel.hashnode.dev·Sep 2, 2024Async vs. Isolates in Flutter: Mastering Parallelism for High-Performance AppsWhen building high-performance apps with Flutter, one of the key considerations is how to efficiently manage tasks that may take a significant amount of time, such as network requests, file I/O, or complex computations. To keep the app responsive and...flutternik
Mohamed Saidm-saied.hashnode.dev·Dec 31, 2023Exploring Isolates in Dart: Concurrency Made EasyIntroduction Dart, Google's open-source programming language, is well-known for its simplicity and versatility. One of the features that sets Dart apart is its support for isolates, which allows developers to achieve concurrency without the complexit...Dart
Brett Suttonbrettsutton.hashnode.dev·Apr 20, 2023Effectively using Dart isolates - part 2the story so far In part 1 of our ‘How and when to use isolates’ blog we found a fast way to send and return data from an isolate avoiding jank during startup and shutdown of an isolate. We described these as the 'fast send' and 'fast return' paths. ...5 likes·30 readsDart