CA
react-native-animated-look-up-table
Creates a look up table which can be used to interpolate across the results of an arbitrary input function. This can be used to help achieve some complex effects whilst maintaining performance, since they can be used in conjunction with useNativeDriver.
Check out the deep dive here.
๐ Getting Started
Using npm:
npm install --save react-native-animated-look-up-tableUsing yarn:
yarn add react-native-animated-look-up-tableโ๏ธ Usage
This library exports the function createTransform, which can be used to compile your animated look up table:
import { createTransform } from 'react-native-animated-transform';
// XXX: Create a sine wave between [0, 1] using 1024 samples.
const sine = createTransform(
// Any arbitrary function of the form (p, from, to) => n can be used.
// The value of p is your current value of progression between
// "from" and "to".
Math.sin,
{
from: 0,
to: 2 * Math.PI,
samples: 1024,
},
);Once generated, you can pass this to an Animated.Value's interpolate function:
<Animated.View
style={{
transform: [
{
// Interpolate animValue using the compiled transform.
scale: animValue
.interpolate(sine),
},
],
}}
/>Since we're interpolating between samples, your look up table will smoothly transition between defined entries of your complex function.
โ๏ธ License
On this page
Languages
JavaScript100.0%
Contributors
MIT License
Created November 13, 2019
Updated December 11, 2020