easy_isolate_mixin
Um mixin simplificado para lançar isolados Dart no Flutter, funcionando perfeitamente com plugins do Flutter
Um mixin simplificado para lançar isolados Dart no Flutter, funcionando perfeitamente com plugins do Flutter
{"sdk":"flutter"}Texto original em inglês. Visite o GitHub para a versão atual.
https://github.com/aagarwal1012/Animated-Text-Kit/assets/75591730/f9d03a37-c830-45d7-9adb-20bb096f942b
The Easy Isolate Mixin is a powerful mixin package designed to streamline the usage of isolates in your Flutter applications. With this Package, you can easily leverage isolates to perform concurrent and computationally intensive tasks without blocking the main thread.
Platform Pub Package License: MIT
To use the Easy Isolate Mixin package in your Flutter project, follow these steps:
Add the following line to your project's pubspec.yaml file under the dependencies section:
dependencies:
easy_isolate_mixin: ^1.0.0
Run the following command in your terminal or command prompt:
$ flutter pub get
Add the following import statement to your Dart code:
import 'package:easy_isolate_mixin/easy_isolate_mixin.dart';
import 'package:easy_isolate_mixin/easy_isolate_mixin.dart';
IsolateHelperMixin:class Service with IsolateHelperMixin {
// Your methods and logic here
}
loadWithIsolate() method to perform expensive work:class Service with IsolateHelperMixin {
Future<void> performExpensiveWork() async {
final result = await loadWithIsolate(() async{
// Perform your expensive work here
// Return the result
});
}
}
In the performExpensiveWork() method, you can use the loadWithIsolate() method from the IsolateHelperMixin to perform your expensive work in a separate isolate. Simply pass a function to loadWithIsolate() that contains your expensive computation. The result of the computation will be returned as a Future.
Here's an example of using loadWithIsolate() to fetch a list of SomeData objects:
class DataSource with IsolateHelperMixin {
Future<List<SomeData>> fetchAmountOfData() =>
loadWithIsolate(() => _api.getAmountOfData());
}
The _api.getAmountOfData() function represents your data fetching logic. It will be executed in a separate isolate, allowing your UI to remain responsive while the data is being fetched. The result will be returned as a Future<List<SomeData>>.
Note: Make sure the function you pass to loadWithIsolate() returns a value or a Future that resolves to the desired result type.
That's it! You can now leverage the power of isolates to perform concurrent and computationally intensive tasks without blocking the main thread.