Once you have installedDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/rit3zh/expo-backdrop/llms.txt
Use this file to discover all available pages before exploring further.
expo-backdrop and completed the prebuild step, you are ready to start adding blur effects. This guide provides two complete, copy-paste-ready examples — the first uses BlurView to create a frosted-glass overlay on top of a background image, and the second uses GaussianBlurView to apply a Gaussian blur directly to its children. Both examples work on iOS and Android without any additional configuration.
Import TypeScript types directly from
expo-backdrop when you need to type props or tint values:Example 1 — BlurView Frosted-Glass Overlay
BlurView blurs whatever is rendered behind it, making it perfect for floating cards, headers, and action bars that sit above a rich background. The tint prop selects an iOS system material that adds a colour wash on top of the blur, and cornerRadius clips both the blur and the children with no need for an extra wrapper.
BlurView frosted-glass overlay
Example 2 — GaussianBlurView on Children
GaussianBlurView blurs its own children rather than the content behind it, mirroring SwiftUI’s .blur(radius:opaque:) modifier. Set blurRadius to control the strength — values are in points on iOS and dp on Android. The optional opaque prop keeps edges solid when set to true, or lets them fade naturally when false (the default).
GaussianBlurView on an image
Next Steps
BlurView Props
Full reference for every
BlurView prop, including Android-only dials and all 21 iOS system materials.GaussianBlurView Props
Full reference for
GaussianBlurView, including blurRadius, opaque, and platform behaviour notes.