24 lines
749 B
C
Raw Normal View History

2017-04-13 00:13:44 -04:00
#import <UIKit/UIKit.h>
#import <SDWebImage/UIImageView+WebCache.h>
2017-04-28 11:06:10 -04:00
#import <SDWebImage/SDWebImageDownloader.h>
#import "FLAnimatedImageView.h"
2017-04-13 00:13:44 -04:00
#import <React/RCTComponent.h>
#import <React/RCTResizeMode.h>
#import "FFFastImageSource.h"
@interface FFFastImageView : FLAnimatedImageView
2017-04-13 00:13:44 -04:00
@property (nonatomic, copy) RCTDirectEventBlock onFastImageLoadStart;
@property (nonatomic, copy) RCTDirectEventBlock onFastImageProgress;
2017-07-03 21:58:24 -04:00
@property (nonatomic, copy) RCTDirectEventBlock onFastImageError;
@property (nonatomic, copy) RCTDirectEventBlock onFastImageLoad;
@property (nonatomic, copy) RCTDirectEventBlock onFastImageLoadEnd;
2017-07-03 21:58:24 -04:00
@property (nonatomic, assign) RCTResizeMode resizeMode;
@property (nonatomic, strong) FFFastImageSource *source;
2017-04-13 00:13:44 -04:00
@end
2017-07-03 21:58:24 -04:00