
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
react-native-animated-blur-view
Advanced tools
React Native Animated Blur component
https://www.npmjs.com/package/react-native-animated-blur-view
npm install react-native-animated-blur-view
import AnimatedBlurView, { AnimatedBlurViewMethods } from "react-native-animated-blur-view";
export default function App() {
const blurViewRef = useRef<AnimatedBlurViewMethods>();
useEffect(() => {
blurViewRef.current?.start(true);
}, []);
return (
<View style={styles.container}>
<Text>React Native Animated Blur View</Text>
<AnimatedBlurView
ref={blurViewRef}
style={StyleSheet.absoluteFillObject}
blurStart={10}
blurEnd={20}
animationDuration={2}
/>
</View>
);
}
Props:
blurStart: number (required). Blur effect start amount.blurEnd: number (required). Blur effect end amount.animationDuration: number (required). Animation duration in seconds.gradient: boolean (optional). Add gradient effect. Default is false.style: StyleProp (optional). View style of the component.animationType: string (optional). Blur Animation type. One of ease, linear, ease-in, ease-out, ease-in-out, cubic-bezier(n,n,n,n). Default is ease.extraStyles: string (optional). Add extra css styles to blur component.start(show: boolean, cb: () => void)ref.current?.start(true, () => console.log('Finished'));
Animates blur view from blurStart amount to blurEnd amount in given animation duration.
reset(show: boolean)ref.current?.reset(true);
Will stop animation and set blurStart/blurEnd amount.
setBlurAmount(amount: number)ref.current?.setBlurAmount(10);
Will set given blur amount without animation.
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
FAQs
React Native Animated Blur component
We found that react-native-animated-blur-view demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.