Skip to content

Commit

Permalink
feat: extend android properties (#481)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbothen-radinn authored Jul 29, 2022
1 parent af4974a commit c99d905
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,15 @@ public void setColor(BlurView view, int color) {

@ReactProp(name = "downsampleFactor", defaultInt = defaultSampling)
public void setDownsampleFactor(BlurView view, int factor) {}

@ReactProp(name = "autoUpdate", defaultBoolean = true)
public void setAutoUpdate(BlurView view, boolean autoUpdate) {
view.setBlurAutoUpdate(autoUpdate);
view.invalidate();
}

@ReactProp(name = "enabled", defaultBoolean = true)
public void setBlurEnabled(BlurView view, boolean enabled) {
view.setBlurEnabled(enabled);
}
}
29 changes: 19 additions & 10 deletions src/components/BlurView.android.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,26 @@ export type BlurViewProps = ViewProps & {
blurRadius?: number;
downsampleFactor?: number;
overlayColor?: string;
enabled?: boolean;
autoUpdate?: boolean;
};

const BlurView = forwardRef<View, BlurViewProps>(
({
downsampleFactor,
blurRadius,
blurAmount = 10,
blurType = 'dark',
overlayColor,
children,
style,
...rest
}, ref) => {
(
{
downsampleFactor,
blurRadius,
blurAmount = 10,
blurType = 'dark',
overlayColor,
enabled,
autoUpdate,
children,
style,
...rest
},
ref
) => {
useEffect(() => {
DeviceEventEmitter.addListener('ReactNativeBlurError', (message) => {
throw new Error(`[ReactNativeBlur]: ${message}`);
Expand Down Expand Up @@ -88,6 +95,8 @@ const BlurView = forwardRef<View, BlurViewProps>(
overlayColor={getOverlayColor()}
blurAmount={blurAmount}
blurType={blurType}
enabled={enabled}
autoUpdate={autoUpdate}
pointerEvents="none"
style={StyleSheet.compose(styles.transparent, style)}
>
Expand Down

0 comments on commit c99d905

Please sign in to comment.