react-native-camera-kit/ios/lib/ReactNativeCameraKit/CKGalleryCustomCollectionViewCell.h
2020-10-23 10:51:48 -07:00

21 lines
485 B
Objective-C

#import <UIKit/UIKit.h>
#if __has_include(<React/RCTBridge.h>)
#import <React/RCTBridge.h>
#else
#import "RCTBridge.h"
#endif
#define CUSOM_BUTTON_IMAGE @"image"
#define CUSOM_BUTTON_BACKGROUND_COLOR @"backgroundColor"
#define CUSOM_BUTTON_COMPONENT @"component"
@interface CKGalleryCustomCollectionViewCell : UICollectionViewCell
@property (nonatomic, strong) RCTBridge *bridge;
-(void) applyStyle:(NSDictionary*)styleDict;
@end