All Flutter SDK objects are live objects, which means they automatically update whenever they're modified. The SDK emits a notification event whenever any property changes.
When a user adds a new item to a list, you may want to update the UI, show a notification, or log a message. When someone updates that item, you may want to change its visual state or fire off a network request. Finally, when someone deletes the item, you probably want to remove it from the UI. The SDK's notification system allows you to watch for and react to changes in your data, independent of the writes that caused the changes.
You can subscribe to changes on the following events:
The examples in this page use two object types, Character
and Fellowship
:
@RealmModel()class _Character { @PrimaryKey() late ObjectId id; late String name; late String species; late int age;}@RealmModel()class _Fellowship { @PrimaryKey() late ObjectId id; late String name; late List<_Character> members;}
Additionally, the examples have this sample data:
final frodo = Character(ObjectId(), 'Frodo', 'Hobbit', 51);final samwise = Character(ObjectId(), 'Samwise', 'Hobbit', 39);final gollum = Character(ObjectId(), 'Gollum', 'Hobbit', 589);final aragorn = Character(ObjectId(), 'Aragorn', 'Human', 87);final legolas = Character(ObjectId(), 'Legolas', 'Elf', 2931);final gimli = Character(ObjectId(), 'Gimli', 'Dwarf', 140);final fellowshipOfTheRing = Fellowship( ObjectId(), 'Fellowship of the Ring', members: [frodo, samwise, aragorn, legolas, gimli]);final config = Configuration.local([Fellowship.schema, Character.schema]);final realm = Realm(config);realm.write(() { realm.add(fellowshipOfTheRing); realm.add(gollum); });
You can register a notification handler on any query within a Realm. The handler receives a RealmResultsChanges object, which includes description of changes since the last notification. RealmResultsChanges
contains the following properties:
Property
Type
Description
inserted
List<int>
Indexes in the new collection which were added in this version.
modified
List<int>
Indexes of the objects in the new collection which were modified in this version.
deleted
List<int>
Indexes in the previous version of the collection which have been removed from this one.
newModified
List<int>
Indexes of modified objects after deletions and insertions are accounted for.
moved
List<int>
Indexes of the objects in the collection which moved.
results
RealmResults<T as RealmObject>
Results collection being monitored for changes.
isCleared
bool
Returns true
if the results collection is empty in the notification callback.
final characters = realm.all<Character>();final subscription = characters.changes.listen((changes) { changes.inserted; changes.modified; changes.deleted; changes.newModified; changes.moved; changes.results; changes.isCleared; });final hobbits = fellowshipOfTheRing.members.query('species == "Hobbit"');final hobbitsSubscription = hobbits.changes.listen((changes) { });
You can register a notification handler on a specific object within a realm. Realm notifies your handler when any of the object's properties change. The handler receives a RealmObjectChanges object, which includes description of changes since the last notification. RealmObjectChanges
contains the following properties:
Property
Type
Description
isDeleted
bool
true
if the object was deleted.
object
RealmObject
Realm object being monitored for changes.
properties
List<String>
Names of the Realm object's properties that have changed.
final frodoSubscription = frodo.changes.listen((changes) { changes.isDeleted; changes.object; changes.properties; });
Changed in version 1.7.0: Added support for RealmMap
change listeners.
Changed in version 2.0.0: Added isCollectionDeleted
property to collection listeners. Added isCleared
property to RealmMapChanges
.
You can register a notification handler on a collection of any of the supported data types within another RealmObject
. Realm notifies your handler when any of the items in the collection change. The handler receives one of the following objects that include a description of changes since the last notification:
RealmListChanges object for RealmList
RealmSetChanges object for RealmSet
RealmMapChanges object for RealmMap
RealmListChanges
contains the following properties:
Property
Type
Description
inserted
List<int>
Indexes of items in the list that were added in this version.
modified
List<int>
Indexes of items in the previous version of the list that were modified in this version.
deleted
List<int>
Indexes of items in the previous version of the list that were removed from this version.
newModified
List<int>
Indexes of modified items after deletions and insertions are accounted for.
moved
List<int>
Indexes of the items in the list that moved in this version.
list
RealmList<T>
RealmList
being monitored for changes.
isCleared
boolean
true
when the list has been cleared by calling its RealmList.clear() method.
isCollectionDeleted
boolean
true
when the parent object containing the list has been deleted.
RealmSetChanges
contains the following properties:
Property
Type
Description
inserted
List<int>
Indexes of items in the set that were added in this version.
modified
List<int>
Indexes of the items in the previous version of the set that were modified in this version.
deleted
List<int>
Indexes of items in the previous version of the set that were removed from this version.
newModified
List<int>
Indexes of modified items after deletions and insertions are accounted for.
moved
List<int>
Indexes of the items in the set that moved in this version.
set
RealmSet<T>
RealmSet
being monitored for changes.
isCleared
boolean
true
when the set has been cleared by calling its RealmSet.clear() method.
isCollectionDeleted
boolean
true
when the parent object containing the set has been deleted.
RealmMapChanges
contains the following properties:
Property
Type
Description
inserted
List<String>
Keys of the map that were added in this version.
modified
List<String>
Keys of the previous version of the map whose corresponding values were modified in this version.
deleted
List<String>
Keys of the previous version of the map that were removed from this version.
map
RealmMap<T>
RealmMap
being monitored for changes.
isCleared
boolean
true
when the map has been cleared by calling its RealmMap.clear() method.
isCollectionDeleted
boolean
true
when the parent object containing the map has been deleted.
final fellowshipSubscription = fellowshipOfTheRing.members.changes.listen((changes) { changes.inserted; changes.modified; changes.deleted; changes.newModified; changes.moved; changes.list; changes.isCleared; changes.isCollectionDeleted; });
New in version 1.9.0.
In Flutter SDK version 1.9.0 and later, you can register a notification handler on a specific User
instance within a realm. Realm notifies your handler when any of the user's properties change (for example, the user acces token is updated or the user state changes). The handler receives a UserChanges object, which includes description of changes since the last notification. UserChanges
contains the following property:
Property
Type
Description
user
User
The user instance that has changed.
final userSubscription = user.changes.listen((changes) { changes.user; });
Pause your subscription if you temporarily don't want to receive notifications. You can later resume listening.
subscription.pause();subscription.resume();
Unsubscribe from your change listener when you no longer want to receive notifications on updates to the data it's watching.
await subscription.cancel();
Changes in nested documents deeper than four levels down do not trigger change notifications.
If you have a data structure where you need to listen for changes five levels down or deeper, workarounds include:
Refactor the schema to reduce nesting.
Add something like "push-to-refresh" to enable users to manually refresh data.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4