Socket
Socket
Sign inDemoInstall

@react-native-community/blur

Package Overview
Dependencies
513
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @react-native-community/blur

React Native Blur component


Version published
Weekly downloads
137K
decreased by-3.81%
Maintainers
1
Install size
107 kB
Created
Weekly downloads
 

Readme

Source

@react-native-community/blur

npm version

A component for UIVisualEffectView's blur and vibrancy effect on iOS, and BlurView on Android.

Current Maintainers:

Content

Installation

yarn add @react-native-community/blur

Install native dependencies (iOS only):

cd ios && pod install

Usage

BlurView
PropertyPossible ValuesDefaultPlatform
blurTypeSee blurType below-All
blurAmount0 - 100 (The maximum blurAmount on Android is 32, so higher values will be clamped to 32)10All
reducedTransparencyFallbackColorAny color-iOS only
blurRadius0 - 25Matches iOS blurAmountAndroid only
downsampleFactor0 - 25Matches iOS blurAmountAndroid only
overlayColorAny colorDefault color based on iOS blurTypeAndroid only
blurType
NameDescription
xlightextra light blur type
lightlight blur type
darkdark blur type
extraDarkextra dark blur type (tvOS only)
regularregular blur type (iOS 10+ and tvOS only)
prominentprominent blur type (iOS 10+ and tvOS only)
blurType (iOS 13 only)
NameDescription
chromeMaterialAn adaptable blur effect that creates the appearance of the system chrome.
materialAn adaptable blur effect that creates the appearance of a material with normal thickness.
thickMaterialAn adaptable blur effect that creates the appearance of a material that is thicker than normal.
chromeMaterialAn adaptable blur effect that creates the appearance of the system chrome.
thinMaterialAn adaptable blur effect that creates the appearance of an ultra-thin material.
ultraThinMaterialAn adaptable blur effect that creates the appearance of an ultra-thin material.
chromeMaterialDarkA blur effect that creates the appearance of an ultra-thin material and is always dark.
materialDarkA blur effect that creates the appearance of a thin material and is always dark.
thickMaterialDarkA blur effect that creates the appearance of a material with normal thickness and is always dark.
thinMaterialDarkA blur effect that creates the appearance of a material that is thicker than normal and is always dark.
ultraThinMaterialDarkA blur effect that creates the appearance of the system chrome and is always dark.
chromeMaterialLightAn adaptable blur effect that creates the appearance of the system chrome.
materialLightAn adaptable blur effect that creates the appearance of a material with normal thickness.
thickMaterialLightAn adaptable blur effect that creates the appearance of a material that is thicker than normal.
thinMaterialLightAn adaptable blur effect that creates the appearance of a thin material.
ultraThinMaterialLightAn adaptable blur effect that creates the appearance of an ultra-thin material.

Complete usage example that works on iOS and Android:

import React, { Component } from "react";
import { View, Image, Text, StyleSheet } from "react-native";
import { BlurView } from "@react-native-community/blur";

export default function Menu() {
  return (
    <View style={styles.container}>
      <Image
        key={'blurryImage'}
        source={{ uri }}
        style={styles.absolute}
      />
      <Text style={styles.absolute}>Hi, I am some blurred text</Text>
      {/* in terms of positioning and zIndex-ing everything before the BlurView will be blurred */}
      <BlurView
        style={styles.absolute}
        blurType="light"
        blurAmount={10}
        reducedTransparencyFallbackColor="white"
      />
      <Text>I'm the non blurred text because I got rendered on top of the BlurView</Text>
    </View>
  )
}

const styles = StyleSheet.create({
  container: {
    justifyContent: "center",
    alignItems: "center"
  },
  absolute: {
    position: "absolute",
    top: 0,
    left: 0,
    bottom: 0,
    right: 0
  }
});

In this example, the Image component will be blurred, because the BlurView in positioned on top. But the Text will stay unblurred.

If the accessibility setting Reduce Transparency is enabled the BlurView will use reducedTransparencyFallbackColor as it's background color rather than blurring. If no reducedTransparencyFallbackColor is provided, theBlurViewwill use the default fallback color (white, black, or grey depending on blurType)

VibrancyView

Uses the same properties as BlurView (blurType, blurAmount, and reducedTransparencyFallbackColor).

The vibrancy effect lets the content underneath a blurred view show through more vibrantly

VibrancyView is only supported on iOS. Also note that the VibrancyView must contain nested views

import { VibrancyView } from "@react-native-community/blur";

export default function Menu() {
  return (
    <Image source={{ uri }} style={styles.absolute}>
      <VibrancyView blurType="light" style={styles.flex}>
      <Text>Hi, I am some vibrant text.</Text>
      </VibrancyView>
    </Image>
  )
}

Example React Native App

This project includes an example React Native app, which was used to make the GIF in this README. You can run the apps by following these steps:

Clone the repository

git clone https://github.com/react-native-community/react-native-blur.git

Install dependencies

yarn
Run the app
yarn example android/ios

Questions?

Feel free to create an issue

Keywords

FAQs

Last updated on 03 May 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc