flutter_isolate icon indicating copy to clipboard operation
flutter_isolate copied to clipboard

Launch an isolate that can use flutter plugins.

Results 56 flutter_isolate issues
Sort by recently updated
recently updated
newest added

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...

closing-unless-response-received

MissingPluginException(No implementation found for method spawn_isolate on channel com.rmawatson.flutterisolate/control)

closing-unless-response-received

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...

good first issue

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...

closing-unless-response-received

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?

good first issue

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....