flutter_isolate
flutter_isolate copied to clipboard
Launch an isolate that can use flutter plugins.
Hello i am using the flutter_isolate plugin to call some apis and update sqflite db on the mobile app.Everything works as expected when tested in debug mode but when in...
MissingPluginException(No implementation found for method spawn_isolate on channel com.rmawatson.flutterisolate/control)
compute() provides a simple way to work with regular isolates without needing to understand and work with the underlying isolate API. This PR implements a new function, flutterCompute(), that works...
```dart void main() async { WidgetsFlutterBinding.ensureInitialized(); await FlutterIsolate.killAll(); print('done'); // ... } ``` The string "done" never gets printed, execution halted (but not paused) and with no exceptions. Why do...
Hi, I'm using the FlutterIsolates to save mass data to my Firestore server. When I test it running from Android Studio, it works perfectly. But, when I send it to...
Hi, On the iOS platform, I use `FlutterEngineGroup` to create multiple engines, can I use `flutter_isolate` for data communication? Thanks.
I want to turn on and off flashlight inside a timer.periodic but flash is not turning on....? ``` FlutterIsolate.spawn(turnOnFlashLight, [ flashLightBlinks, flashLightBlinksDelay, prefs, ]); --------------------------------------------------------------------------------- void turnOnFlashLight(List l) { int...
I have issues on iOS with this simple code sample, it throws an MissingPluginException. On Android everything works perfectly fine. flutter_isolate: ^2.0.2 ``` void connect(String args) async { SpotifySdk.subscribeConnectionStatus().listen((event) {...
Hi, I see that `Isolate.spawn(...)` enables naming the isolate for debug and tooling purposes: https://api.dart.dev/stable/2.17.0/dart-isolate/Isolate/spawn.html Is this also possible when we use this package?
From my experimentation I can't get the isolate to continue to run after the app is killed, please document if this is possible and if so how to achieve it....