2015-10-05 20:41:32 +00:00
|
|
|
#import "BlurViewManager.h"
|
|
|
|
#import "BlurView.h"
|
|
|
|
|
|
|
|
@implementation BlurViewManager
|
|
|
|
|
|
|
|
RCT_EXPORT_MODULE();
|
|
|
|
|
2015-10-05 22:11:17 +00:00
|
|
|
- (UIView *)view
|
2015-10-05 20:41:32 +00:00
|
|
|
{
|
|
|
|
return [[BlurView alloc] init];
|
|
|
|
}
|
|
|
|
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(blurType, NSString);
|
2016-10-29 15:20:00 +00:00
|
|
|
RCT_EXPORT_VIEW_PROPERTY(blurAmount, NSNumber);
|
2019-08-21 06:19:31 +00:00
|
|
|
RCT_EXPORT_VIEW_PROPERTY(reducedTransparencyFallbackColor, UIColor);
|
2015-10-05 20:41:32 +00:00
|
|
|
|
|
|
|
@end
|