Uwe (ObjectBox)
Uwe (ObjectBox)
Closing this issue due to inactivity. :zzz: Feel free to comment with more details or submit a new issue.
Closing this issue due to inactivity. :zzz: Feel free to comment with more details or submit a new issue.
Thanks for reporting! I assume by Windows you mean via WSL2? What distro are you using? We have tested this with Ubuntu 22.04. Edit: The path `/d/browserOB/objectbox` hints that this...
It's correct. For unit tests you need to download the native library for your machine manually. I made the note on https://docs.objectbox.io/getting-started about this more prominent. Edit: we welcome any...
Thanks for this! It's correct that the generator currently only looks for an unnamed constructor. After a quick look, I don't see any reason on why it was restricted that...
@FabrizioG202 Yes, that's probably the best way to go. You can submit a pull request for this! But note that depending on the magnitude of the changes we may require...
Thanks for reporting! First of all, using multiple Flutter Engines [seems to be a valid use case](https://docs.flutter.dev/development/add-to-app/multiple-flutters). The API is advertised to be used to have one or more Flutter...
I read through the [code example](https://github.com/flutter/samples/tree/main/add_to_app/multiple_flutters) and [docs](https://docs.flutter.dev/development/add-to-app/multiple-flutters) from Flutter: **there should only exist a single Dart VM for all `FlutterEngine`s. And yes, they do not share state.** So `_store...
@clarky2233 This should typically not happen as `Store.isOpen` is calling into the C library that has shared state across isolates. Can you open a new issue with more details, e.g....
@clarky2233 Calling `Store.isOpen(null)` will check the default path, which is `objectbox`. This will not work for Flutter apps as there a path in the documents directory is used when opening...