gl-react-blurhash 
Universal gl-react module that implements BlurHash in OpenGL.
Installation
Expo
Add the following dependencies:
expo add gl-react gl-react-expo expo-gl buffer gl-react-blurhash
React Native
First setup react-native-unimodules, then add the following dependencies:
yarn add gl-react gl-react-native buffer gl-react-blurhash
Example
import React from 'react';
import { Surface } from 'gl-react-expo';
import { Blurhash } from 'gl-react-blurhash';
export default function App {
return (
<Surface style={{ width: 300, height: 200 }}>
<Blurhash hash="LPKA$w{H_c05b{Nqwbx^grotMnNf" />
</Surface>
);
}