react-native-blur/ios/BlurEffectWithAmount.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

8 lines
224 B
Objective-C

#import <UIKit/UIKit.h>
@interface BlurEffectWithAmount : UIBlurEffect
@property (nonatomic, strong) NSNumber *blurAmount;
+ (instancetype)effectWithStyle:(UIBlurEffectStyle)style andBlurAmount:(NSNumber*)blurAmount;
@end