python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Multiple Isolates vs one Isolate
How isolates are distributed across CPU cores
In Dart, you can run multiple isolates at the same time, and I haven't been able to find a guideline or best practice for using isolates.
My question is h...
Mohammed Alfateh
Votes: 0
Answers: 2
How to play audio from an isolate?
The requirement is simple: An app (for both mobile and desktop) that continues to run in background and periodically plays some audio and/or vibrates if some events happen.
An isolate seemed to be the...
SePröbläm
Votes: 0
Answers: 0
Spawning Isolates in for loop and processing parallelly in Dart
for(int i=0;i<2;i++){
..............preprocessing(pr)...........
..... = await someFunc(someData[i]) (this line spawns off new Isolate)
..............postprocessing(po)..........
}
I a...
Varun Hegde
Votes: 0
Answers: 1
FlutterFire Messaging : MissingPluginException error thrown for Shared Preferences
I'm using firebase and shared_preference in my flutter project, where I need to store a incoming message to the shared preferences. Whenever a message is received, I am getting the below exception
I/f...
Vetrivelu Murugesan
Votes: 0
Answers: 0