mirror of
https://github.com/status-im/react-native-fast-image.git
synced 2025-02-23 11:48:16 +00:00
24 lines
765 B
Objective-C
24 lines
765 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
#import <SDWebImage/UIImageView+WebCache.h>
|
|
#import <SDWebImage/SDWebImageDownloader.h>
|
|
#import <FLAnimatedImage/FLAnimatedImageView.h>
|
|
|
|
#import <React/RCTComponent.h>
|
|
#import <React/RCTResizeMode.h>
|
|
|
|
#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
|
|
|