mirror of
https://github.com/status-im/react-native-blur.git
synced 2025-01-16 19:44:28 +00:00
16 lines
229 B
Mathematica
16 lines
229 B
Mathematica
|
#import "VibrancyViewManager.h"
|
||
|
#import "VibrancyView.h"
|
||
|
|
||
|
@implementation VibrancyViewManager
|
||
|
|
||
|
RCT_EXPORT_MODULE();
|
||
|
|
||
|
- (UIView *)view
|
||
|
{
|
||
|
return [[VibrancyView alloc] init];
|
||
|
}
|
||
|
|
||
|
RCT_EXPORT_VIEW_PROPERTY(blurType, NSString);
|
||
|
|
||
|
@end
|