react-native-blur/ios/BlurView.h
Nathan Broadbent 10858e396b Fixed all the issues with iOS, and allow individual blurAmounts (instead of one shared value.)
Also changed VibrancyView to be a subclass of BlurView.
2017-04-17 22:23:10 +07:00

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