mirror of
https://github.com/status-im/react-native-blur.git
synced 2025-01-12 09:34:16 +00:00
10858e396b
Also changed VibrancyView to be a subclass of BlurView.
14 lines
349 B
Objective-C
14 lines
349 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#import "BlurEffectWithAmount.h"
|
|
|
|
@interface BlurView : UIView
|
|
|
|
@property (nonatomic, copy) NSString *blurType;
|
|
@property (nonatomic, copy) NSNumber *blurAmount;
|
|
|
|
@property (nonatomic, strong) BlurEffectWithAmount *blurEffect;
|
|
@property (nonatomic, strong) UIVisualEffectView *blurEffectView;
|
|
|
|
- (void)updateBlurEffect;
|
|
@end
|