objectbox-dart
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
A project that imports object-box should be able to compile on web. As is, if we'd like a project to run on web, stubs must be created to avoid importing...
enhancement
```dart import 'package:path/path.dart' as p; import 'package:path_provider/path_provider.dart'; import '../objectbox.g.dart'; class ObjectBox { late final Store store; ObjectBox._create(this.store) { // Add any additional setup code, e.g. build queries. } static Future...
enhancement