mirror of
https://github.com/status-im/react-native-blur.git
synced 2025-01-28 01:05:18 +00:00
18 lines
618 B
Objective-C
18 lines
618 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#import "BlurEffectWithAmount.h"
|
|
|
|
@interface BlurView : UIView
|
|
|
|
@property (nonatomic, copy, nullable) NSString *blurType;
|
|
@property (nonatomic, copy, nullable) NSNumber *blurAmount;
|
|
@property (nonatomic, copy, nullable) UIColor *reducedTransparencyFallbackColor;
|
|
|
|
@property (nonatomic, strong, nullable) BlurEffectWithAmount *blurEffect;
|
|
@property (nonatomic, strong, nullable) UIVisualEffectView *blurEffectView;
|
|
@property (nonatomic, strong, nullable) UIView *reducedTransparencyFallbackView;
|
|
|
|
- (void)updateBlurEffect;
|
|
- (void)updateFallbackView;
|
|
- (BOOL)useReduceTransparencyFallback;
|
|
@end
|