flutter_realm
flutter_realm copied to clipboard
Realm via Platform Channels
Dear mogol, Thanks for the nice plugin. When I use this plugin, the following hint appears: Because every version of flutter_realm depends on rxdart ^0.22.0 and this app depends on...
Do you have any thoughts on implementation for [migrations](https://realm.io/docs/objc/latest/#migrations)? Passing schema version through the [configuration](https://github.com/mogol/flutter_realm/blob/master/lib/src/realm.dart#L224) is straightforward. The migration block would need to exist in native Java and ObjC host...
I get a `PlatformException (PlatformException(-1, Unsupported value for standard codec, null))` exception on iOS when i try to fetch all objects, when one object has a one-to-one relation to another...
I am the first time using realm on iOS and get an error like this? ``` Unhandled Exception: PlatformException(-1, Object type 'BeritaDb' is not managed by the Realm. If using...
PR for issue/proposal #3 `local_realm_provider.dart` contains examples for various configuration options: - In-memory Realm - Default persistent Realm - Custom file name in default directory - Subdirectory under default directory...
the example in the repo is not working, when I add a record to the fetchWidget and after a reload the item is not there!
Error: **The class `'ClasName'` doesn't exist in this Realm.** Exception on line `await realm.createObject('ClassName', myclass.toMap());` on `main.dart` **In Flutter, main.dart** ``` import 'package:flutter/material.dart'; import 'package:flutter_realm/flutter_realm.dart'; import 'package:app_ns/src/dao/schedule_dao.dart'; void main(List args)...
Persistent Realms are written to an unencrypted `default.realm` file by default: - (Android) `Context.getFilesDir()` - (iOS) `/Documents` I propose adding support for additional [configuration options](https://realm.io/docs/java/latest/#configuring-a-realm): - subdirectories - custom Realm...