objectbox-dart icon indicating copy to clipboard operation
objectbox-dart copied to clipboard

Flutter database for super-fast Dart object persistence

Results 123 objectbox-dart issues
Sort by recently updated
recently updated
newest added

I have an object that looks like ``` @Entity() class Post { int id; List? readByIds // other properties queryObject({this.id = 0, this.readByIds}); } ``` And I would like to...

enhancement
on-hold

ObjectBox core comes with time-series support - consider exposing in Dart. Basic characteristics: * there's an "id-companion" annotation for a millisecond or nanosecond-precision time field (`OBXPropertyFlags_ID_COMPANION`) * box (or some...

enhancement

I was reading the [release notes for dart 2.12](https://medium.com/dartlang/announcing-dart-2-12-499a6e689c87), and I noticed objectbox got an honorable mention, wrt ffi usage! Good job people! From the article, we can expect better...

enhancement
on-hold

We could provide a `Lazy` wrapper to improve loading large data. It could work similarly to `ToOne` relation wrapper, with `value` getter loading the content on-demand. ```dart @Entity TestEntity {...

enhancement
needs more interest

We should have a way to test ObjectBox runs on mobile (simulator) Android and iOS. From the quick look in the past I think our current tests (/test folder) can't...

good first issue
internal

When building with flutter I'm getting this error: `fatal error: lipo: -extract armv7 specified but fat file: /build/ios/Debug-iphoneos/Runner.app/Frameworks/ObjectBox.frame`work/ObjectBox does not contain that architecture` As much as I don't think I...

enhancement
needs more interest

Currently, all supported functionality is tested in dart, with tests in `objectbox/test/`. While this should work fine and is great for development, it would be nice if we could run...

help wanted

When first installing a version of the app, openStore works as expected and creates the store and boxes as needed on launch. After updating the app on the phone it...

bug

Public pull request to run GitHub Actions.