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

Is Entity Inheritance already supported? `@BaseEntity` annotation seems not yet to be available. Maybe you could add a hint to the docs if it is not yet supported on dart....

enhancement

I have 2 flutter apps and I share a database between them using the IOS app groups container, my 2 flutter apps can run simultaneously on the same device and...

bug

I try to hook up a custom REST synchronization service to entity changes and have something like this to listen to model changes: ``` final objectBox = await ObjectBox.create(); ......

enhancement

Hello, Using `objectbox: 1.3.0` I am having a problem trying to update data when I receive a notification from FCM when the application is running in the background. When a...

I downloaded the basic example and it happens on that too. https://user-images.githubusercontent.com/70333416/183419423-44c2637c-6bf9-4303-bb06-482e02eb7a02.mov Only if I restart the app (or Hot reload it) the new values are visible. In another use...

### Basic info (please complete the following information): - ObjectBox version: [1.6.0] - Flutter/Dart SDK: [3.0.5/2.14.4] - Null-safety enabled: [yes] - Reproducibility: [always] - OS: [mac M1] - Device/Emulator: [Galaxy...

:rotating_light: First, please check: - existing issues, - FAQs https://github.com/objectbox/objectbox-dart#faq 1. create a model `current_user.dart` inside `lib` folder: ``` import 'package:objectbox/objectbox.dart'; @Entity() class CurrentUser { @Id(assignable: true) int? localId; @Unique()...

enhancement

### Basic info - ObjectBox version: latest - Flutter/Dart SDK: 2.7 (Beta) - Null-safety enabled: yes - Reproducibility: always - OS: any - Device/Emulator: any ### Steps to reproduce 1....

enhancement

When using `query(condition).watch()` you get a Stream of changes. However, there does not seem to be a way to close the underlying query. As stated in the docs for `Query`,...

needs more interest

Invalid argument(s): Failed to load dynamic library 'libobjectbox-jni.so': dlopen failed: library "libobjectbox-jni.so" not found - ObjectBox version: 1.3.0 - Flutter/Dart SDK: 2.8.1 - Null-safety enabled: yes - Reproducibility: always -...

bug