#import #import #import // Import from the FLAnimated image CocoaPod if it's available. #if __has_include() #import // Import from the version within SDWebImage otherwise. #elif __has_include() #import #endif #import #import #import "FFFastImageSource.h" @interface FFFastImageView : FLAnimatedImageView @property (nonatomic, copy) RCTDirectEventBlock onFastImageLoadStart; @property (nonatomic, copy) RCTDirectEventBlock onFastImageProgress; @property (nonatomic, copy) RCTDirectEventBlock onFastImageError; @property (nonatomic, copy) RCTDirectEventBlock onFastImageLoad; @property (nonatomic, copy) RCTDirectEventBlock onFastImageLoadEnd; @property (nonatomic, assign) RCTResizeMode resizeMode; @property (nonatomic, strong) FFFastImageSource *source; @end