mirror of
https://github.com/status-im/react-native-blur.git
synced 2025-01-12 09:34:16 +00:00
17 lines
263 B
Objective-C
17 lines
263 B
Objective-C
#import "BlurViewManager.h"
|
|
#import "BlurView.h"
|
|
|
|
@implementation BlurViewManager
|
|
|
|
RCT_EXPORT_MODULE();
|
|
|
|
- (UIView *)view
|
|
{
|
|
return [[BlurView alloc] init];
|
|
}
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(blurType, NSString);
|
|
RCT_EXPORT_VIEW_PROPERTY(blurAmount, NSNumber);
|
|
|
|
@end
|