29 lines
656 B
Objective-C
29 lines
656 B
Objective-C
//
|
|
// CKGalleryCustomCellCollectionViewCell.h
|
|
// ReactNativeCameraKit
|
|
//
|
|
// Created by Ran Greenberg on 28/02/2017.
|
|
// Copyright © 2017 Wix. All rights reserved.
|
|
//
|
|
|
|
#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
|