Skip to content

Instantly share code, notes, and snippets.

@dutradotdev
dutradotdev / .tsx
Last active March 24, 2025 23:24
BlurContainer in React Native
import React from 'react';
import WebView from 'react-native-webview';
export type RGBA = `rgba(${number}, ${number}, ${number}, ${number})`;
export interface BlurContainerProps {
backgroundColor: RGBA;
blurRadius: number;
}