An open API service indexing awesome lists of open source software.

https://github.com/dominicstop/react-native-ios-visual-effect-view

A react-native library for using UIVisualEffectView on iOS, with support for using preset system visual effects, as well as using custom blur radius, and creating custom filters (with out of the box support for simple animations).
https://github.com/dominicstop/react-native-ios-visual-effect-view

cafilter fabric jsi react react-natve swift uikit uivisualeffectview

Last synced: 3 months ago
JSON representation

A react-native library for using UIVisualEffectView on iOS, with support for using preset system visual effects, as well as using custom blur radius, and creating custom filters (with out of the box support for simple animations).

Awesome Lists containing this project

README

        

# react-native-ios-visual-effect-view

A small library to use `UIVisualEffectView` in `react-native`.

example-demo-01


[`VisualEffectCustomFilterViewTest01Screen`](example/src/examples/CustomFilterViewTest01Screen.tsx)

![RNIVisualEffectCustomFilterViewTest01Screen.tsx](./assets/RNIVisualEffectCustomFilterViewTest01Screen.gif)


[`VisualEffectCustomFilterViewTest01Screen`](example/src/examples/AnimatableCustomFilterViewTest02Screen.tsx)

![AnimatableCustomFilterViewTest02Screen.tsx](./assets/AnimatableCustomFilterViewTest02Screen-01.gif)


[`VisualEffectCustomFilterViewTest02Screen`](example/src/examples/AnimatableCustomFilterViewTest02Screen.tsx)

![AnimatableCustomFilterViewTest02Screen.tsx](./assets/AnimatableCustomFilterViewTest02Screen-02.gif)

![AnimatableCustomFilterViewTest02Screen.tsx](./assets/AnimatableCustomFilterViewTest02Screen-01.gif)



## ๐Ÿšงโš ๏ธ Notices โš ๏ธ๐Ÿšง

๐Ÿ“ **Hiatus Notice**: Unfortunately, i'm no longer doing OSS for the time being, so this library is in maintenance mode (if you're interested in sponsoring my work or picking up the project, please don't hesitate to [contact me](#misc-and-contact)).

๐Ÿ“ **WIP Notice**: This library + documentation is currently not finished yet. For now, please browse through [examples](example/src/examples) directory to get a rough idea on how to use this library. Jump to [basic usage section](#c-basic-usage) for example code + gif.



### Acknowledgements

very special thanks to: [junzhengca](https://github.com/junzhengca), [brentvatne](https://github.com/brentvatne), [expo](https://github.com/expo), [EvanBacon](https://github.com/EvanBacon), [corasan](https://github.com/corasan), [lauridskern](https://github.com/lauridskern), [ronintechnologies](https://github.com/ronintechnologies), [gerzonc](https://github.com/gerzonc), and [edencakir](https://github.com/edencakir) for becoming a monthly sponsor, and thank you [fobos531](https://github.com/fobos531) for being a one time sponsor ๐Ÿฅบ (if you have the means to do so, please considering sponsoring [here](https://github.com/sponsors/dominicstop))



## A. Introduction

https://github.com/user-attachments/assets/74bf8afa-91ed-49d8-80aa-a17b8e7969b0

https://github.com/user-attachments/assets/16d2c2ee-5453-43ea-bd3f-aa8331fbcd58


* โค๏ธ Support for using `UIVisualEffectView` + all the system [`UIBlurEffectStyles`](https://github.com/dominicstop/react-native-ios-utilities/blob/master/src/constants/UIBlurEffectStyles.ts).
* ๐Ÿงก Support for using custom blur radius and effect intensity (percent).
* ๐Ÿ’š Support for animating the blur effect style + blur radius changes.
* ๐Ÿ’™ Support for creating and using filters (WIP)
* ๐Ÿ’œ Runs on the old + new architecture (paper + fabric).


### Testflight and Testing

The example app builds are automatically created and submitted on every version release via Xcode cloud, so if you just want to quickly try things out, the example app is available to try out via testflight ([invite link](https://testflight.apple.com/join/YsGzqBxB)).

Alternatively, you can also try out the corresponding example app to the native dependency that this library uses under the hood: [`VisualEffectBlurView`](https://github.com/dominicstop/VisualEffectBlurView) ([invite link](https://testflight.apple.com/join/rP5yWFYx)).


### Other Related Gifs

[`Experiment02ViewController.swift`](https://github.com/dominicstop/VisualEffectBlurView/blob/main/example/Routes/Experiment02ViewController.swift)

![Experiment02ViewController](https://github.com/dominicstop/VisualEffectBlurView/raw/main/assets/Experiment02ViewController.gif)


[`VisualEffectBlurTestViewController.swift`](https://github.com/dominicstop/VisualEffectBlurView/blob/main/example/Routes/VisualEffectBlurTestViewController.swift)

![VisualEffectBlurTestViewController](https://github.com/dominicstop/VisualEffectBlurView/raw/main/assets/VisualEffectBlurTestViewController.gif)


[`VisualEffectViewExperiment01ViewController.swift`](https://github.com/dominicstop/VisualEffectBlurView/blob/main/example/Routes/VisualEffectViewExperiment01ViewController.swift)

![VisualEffectViewExperiment01ViewController-01](https://github.com/dominicstop/VisualEffectBlurView/raw/main/assets/Demo-VisualEffectBlurTestViewController-01.gif)

![VisualEffectViewExperiment01ViewController-02](https://github.com/dominicstop/VisualEffectBlurView/raw/main/assets/Demo-VisualEffectBlurTestViewController-02.gif)


[`VisualEffectCustomFilterViewTest02Controller.swift`](https://github.com/dominicstop/VisualEffectBlurView/blob/main/example/Routes/VisualEffectCustomFilterViewTest02Controller.swift)

![VisualEffectCustomFilterViewTest02Controller](https://github.com/dominicstop/VisualEffectBlurView/raw/main/assets/VisualEffectCustomFilterViewTest02Controller.gif)



## B. Installation

**Note**: Support for the new architecture (fabric), and backwards compatibility for the old architecture (paper) is handled via a peer dependency to [`react-native-ios-utilites@v5`](https://github.com/dominicstop/react-native-ios-utilities).

```sh
# 1. install library + dependencies
npm install react-native-ios-visual-effect-view@next
npm install react-native-ios-utilities@next

# 2. then run pod install (uses auto-linking)
cd ios && pod install
```



### Updating

This library has cocoapods dependency to [`VisualEffectBlurView`](https://github.com/dominicstop/VisualEffectBlurView) and [`DGSwiftUtilities`](https://github.com/dominicstop/DGSwiftUtilities), so you may need to update them separately (as needed).

```sh
# A. Either update this specific pod...
pod update VisualEffectBlurView DGSwiftUtilities
pod install --repo-update

# B. Or update all the pods
pod update
```



## C. Basic Usage

hello! please see [`BlurViewBasicUsage01`](example/src/examples/BlurViewBasicUsage01.tsx) for the full example

```js
// ๐Ÿ“ Note: for the sake of brevity, some of the code is omitted...
import { BlurView } from 'react-native-ios-visual-effect-view';

export function BlurViewBasicUsage01() {
return (


{'โค๏ธ\n๐Ÿงก\n๐Ÿ’›\n๐Ÿ’š\n๐Ÿ’™\n๐Ÿ’œ\n๐Ÿ’–\n๐Ÿ’ƒ\nโœจ'}



);
}
```



## D. Documentation

TBA



## E. Examples

Please see the [examples directory](example/src/examples) for the full list of examples, demos and tests.


### `CustomFilterViewExample01`

**Summary**: Create a custom filter that darkens the views in the background, and applies a variable blur.


| Notes |
| :----------------------------------------------------------- |
| 1๏ธโƒฃ โ€” The `CustomFilterView.currentFilters` prop accepts a `CustomFilterConfig` object; this object is used create and configure the underlying `UIVisualEffectView` effects.

The `CustomFilterConfig` is comprised of several properties, but for this example we will be focusing on the `CustomFilterConfig.backgroundFilters` property (since it's required). |
| 2๏ธโƒฃ โ€” The `CustomFilterConfig.backgroundFilters` property accepts an array of `LayerFilterConfig` object; the "filter entries" in this array defines what filters to use for the `UIVisualEffectView`'s backdrop layer.

The backdrop layer is special in that it is able to composite views that are behind it, and apply filters to it.

๐Ÿ“ **Note**: The "quality" of the composited views can be controlled via the `CustomFilterView.backgroundLayerSamplingSizeScale` prop; Setting this to `2.0` increases the sampling size, but at the cost of performance (use with caution). |
| 3๏ธโƒฃ โ€” The `LayerFilterConfig` object is an tagged union type, with the `LayerFilterConfig.filterName` property being the "discriminant" that separates all the possible combinations.

The `filterName` defines what type of filter to use; different types of filters have different inputs to control the look/behavior of the desired effect.

In the example below, we define 4 `LayerFilterConfig` entries in the array for the `CustomFilterConfig.backgroundFilters` property: `variadicBlur` (variable blur), `colorBlackAndWhite` (color monochrome), `brightenColors` (color brightness), and `contrastColors` (color contrast).

๐Ÿ“ **Note**: The names for the filter are a bit weird because we can't use the internal filters directly. Please see [`LayerFilterTypeName.swift`](https://github.com/dominicstop/VisualEffectBlurView/blob/1ac12b049e53ace5dce4ce46870024d5f98b052a/Sources/ObjectWrappers/LayerFilterWrapper/LayerFilterTypeName.swift) for the implementation details. |


[๐Ÿ”— Full Example](example/src/examples/CustomFilterViewExample01.tsx)

```jsx
export function CustomFilterViewExample01() {
return (


{emojiString}



{'Hello World'}



);
}
```

CustomFilterViewExample01


### `CustomFilterViewExample02`

**Summary**: TBA

[๐Ÿ”— Full Example](example/src/examples/CustomFilterViewExample02.tsx)

```jsx
export function CustomFilterViewExample02() {
// ...
return (

{ /* ... */ }






);
}
```

CustomFilterViewExample02



## Contributing

See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.



## License

MIT



## Misc and Contact

* ๐Ÿค **Twitter/X**: [`@GoDominic`](https://x.com/GoDominic)
* ๐Ÿฆ‹ **Bluesky**: [`@godominic.bsky.social`](https://bsky.app/profile/godominic.bsky.social)
* ๐Ÿ’Œ **Email**: `[email protected]`
* ๐ŸŒ **Website**: [dominicgo.dev](https://dominicgo.dev)

---

Made with [create-react-native-library](https://github.com/callstack/react-native-builder-bob)