React Native animations via Core Animation or RenderThread API
Used in production at Openland for over the year.
-
Open your iOS project in Xcode and create empty Swift file and bridging header to enable Swift support
-
Modify
android/build.gradle
:buildscript { ext { ... + kotlinVersion = "1.3.50" } ... dependencies { + classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}") ...
yarn add react-native-fast-animations
cd ios && pod install && cd ..
import * as React from 'react'
import { View } from 'react-native'
import {
FastAnimations
} from 'react-native-fast-animations'
MIT