xspyhack
xspyhack
Normally I thinks we don't need to decode GIF with .backgroundDecode option when you use `AnimatedImageView` to display. `AnimatedImageView` will preload and resize(if `needsPrescaling` is true, default is true) frame...
You can use `Kingfisher.AnimatedImageView` instead of `UIImageView` to improve memory usage.
@stackJolin `AnimatedImageView` only keeps a limited number of frames in memory, it uses `CADisplayLink` to update the buffer asynchronously. For more details, you can read the source code.
Add these two lines code to `- (NSDictionary *)toMap` method in `RLMObject (FlutterRealm)` will support relationships ```objc } else if ([self[p.name] isKindOfClass:[RLMObject class]]) { map[p.name] = [(RLMObject *)self[p.name] toMap]; }...
PRs are welcome