https://github.com/danger-ahead/flutter_isolates_example
https://github.com/danger-ahead/flutter_isolates_example
flutter flutter-hive flutter-isolate flutter-isolate-example hive isolates
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/danger-ahead/flutter_isolates_example
- Owner: danger-ahead
- Created: 2024-06-01T12:31:05.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-01T16:50:14.000Z (almost 2 years ago)
- Last Synced: 2025-03-13T03:02:13.687Z (about 1 year ago)
- Topics: flutter, flutter-hive, flutter-isolate, flutter-isolate-example, hive, isolates
- Language: C++
- Homepage:
- Size: 261 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Example project showing Flutter Isolates usage
This project is a simple example of how to use Flutter Isolates to run and manage background/resource-intensive tasks.
#### \*\*\* Used hive for demo purposes to store data in local storage. Although the hive is not suited for multi-isolate usage(changes in 1 isolate do not reflect in others concurrently), it is still possible to use it with isolates(by keeping the hive instance open in only 1 particular isolate). You can use any other storage solution.
## Medium Article
I have written a medium article explaining the code in detail. You can read it [here](https://medium.com/@danger-ahead/working-with-isolates-and-hive-in-flutter-b5ef3d32fa2a).