SYMBOL INDEX (83 symbols across 27 files)
FILE: Examples/AnimatableExplorer/AnimationCell.tsx
type AnimationCellProps (line 18) | interface AnimationCellProps {
FILE: Examples/AnimatableExplorer/App.tsx
constant COLORS (line 13) | const COLORS = [
constant NATIVE_INCOMPATIBLE_ANIMATIONS (line 28) | const NATIVE_INCOMPATIBLE_ANIMATIONS = [
function App (line 88) | function App() {
FILE: Examples/AnimatableExplorer/android/app/src/debug/java/com/animatableexplorer/ReactNativeFlipper.java
class ReactNativeFlipper (line 31) | public class ReactNativeFlipper {
method initializeFlipper (line 32) | public static void initializeFlipper(Context context, ReactInstanceMan...
FILE: Examples/AnimatableExplorer/android/app/src/main/java/com/animatableexplorer/MainActivity.java
class MainActivity (line 8) | public class MainActivity extends ReactActivity {
method getMainComponentName (line 14) | @Override
method createReactActivityDelegate (line 24) | @Override
FILE: Examples/AnimatableExplorer/android/app/src/main/java/com/animatableexplorer/MainApplication.java
class MainApplication (line 13) | public class MainApplication extends Application implements ReactApplica...
method getUseDeveloperSupport (line 17) | @Override
method getPackages (line 22) | @Override
method getJSMainModuleName (line 31) | @Override
method isNewArchEnabled (line 36) | @Override
method isHermesEnabled (line 41) | @Override
method getReactNativeHost (line 47) | @Override
method onCreate (line 52) | @Override
FILE: Examples/AnimatableExplorer/android/app/src/release/java/com/animatableexplorer/ReactNativeFlipper.java
class ReactNativeFlipper (line 16) | public class ReactNativeFlipper {
method initializeFlipper (line 17) | public static void initializeFlipper(Context context, ReactInstanceMan...
FILE: Examples/AnimatableExplorer/groupedAnimationTypes.ts
type GroupedAnimationType (line 3) | interface GroupedAnimationType {
FILE: Examples/MakeItRain/App.js
constant MONEY_DIMENSIONS (line 8) | const MONEY_DIMENSIONS = {width: 49, height: 26};
constant SCREEN_DIMENSIONS (line 9) | const SCREEN_DIMENSIONS = Dimensions.get('window');
constant WIGGLE_ROOM (line 10) | const WIGGLE_ROOM = 50;
FILE: Examples/MakeItRain/android/app/src/debug/java/com/makeitrain/ReactNativeFlipper.java
class ReactNativeFlipper (line 31) | public class ReactNativeFlipper {
method initializeFlipper (line 32) | public static void initializeFlipper(Context context, ReactInstanceMan...
FILE: Examples/MakeItRain/android/app/src/main/java/com/makeitrain/MainActivity.java
class MainActivity (line 8) | public class MainActivity extends ReactActivity {
method getMainComponentName (line 14) | @Override
method createReactActivityDelegate (line 24) | @Override
FILE: Examples/MakeItRain/android/app/src/main/java/com/makeitrain/MainApplication.java
class MainApplication (line 13) | public class MainApplication extends Application implements ReactApplica...
method getUseDeveloperSupport (line 17) | @Override
method getPackages (line 22) | @Override
method getJSMainModuleName (line 31) | @Override
method isNewArchEnabled (line 36) | @Override
method isHermesEnabled (line 41) | @Override
method getReactNativeHost (line 47) | @Override
method onCreate (line 52) | @Override
FILE: Examples/MakeItRain/android/app/src/release/java/com/makeitrain/ReactNativeFlipper.java
class ReactNativeFlipper (line 16) | public class ReactNativeFlipper {
method initializeFlipper (line 17) | public static void initializeFlipper(Context context, ReactInstanceMan...
FILE: createAnimatableComponent.js
constant INTERPOLATION_STYLE_PROPERTIES (line 12) | const INTERPOLATION_STYLE_PROPERTIES = [
constant ZERO_CLAMPED_STYLE_PROPERTIES (line 36) | const ZERO_CLAMPED_STYLE_PROPERTIES = ['width', 'height'];
function omit (line 39) | function omit(keys, source) {
function deepEquals (line 50) | function deepEquals(a, b) {
function getAnimationTarget (line 55) | function getAnimationTarget(iteration, direction) {
function getAnimationOrigin (line 70) | function getAnimationOrigin(iteration, direction) {
function getCompiledAnimation (line 74) | function getCompiledAnimation(animation) {
function makeInterpolatedStyle (line 85) | function makeInterpolatedStyle(compiledAnimation, animationValue) {
function transitionToValue (line 97) | function transitionToValue(
function createAnimatableComponent (line 126) | function createAnimatableComponent(WrappedComponent) {
FILE: createAnimation.js
function compareNumbers (line 3) | function compareNumbers(a, b) {
function notNull (line 7) | function notNull(value) {
function parsePosition (line 11) | function parsePosition(value) {
function createAnimation (line 27) | function createAnimation(definition) {
FILE: definitions/fading-entrances.js
function makeFadeInTranslation (line 1) | function makeFadeInTranslation(translationType, fromValue) {
FILE: definitions/fading-exits.js
function makeFadeOutTranslation (line 1) | function makeFadeOutTranslation(translationType, toValue) {
FILE: definitions/sliding-entrances.js
function makeSlideInTranslation (line 1) | function makeSlideInTranslation(translationType, fromValue) {
FILE: definitions/sliding-exits.js
function makeSlideOutTranslation (line 1) | function makeSlideOutTranslation(translationType, fromValue) {
FILE: definitions/zooming-entrances.js
function makeZoomInTranslation (line 3) | function makeZoomInTranslation(translationType, pivotPoint) {
FILE: definitions/zooming-exits.js
function makeZoomOutTranslation (line 3) | function makeZoomOutTranslation(translationType, pivotPoint) {
FILE: easing.js
constant EASING_FUNCTIONS (line 3) | const EASING_FUNCTIONS = {
FILE: flattenStyle.js
function flattenStyle (line 3) | function flattenStyle(style) {
FILE: getDefaultStyleValue.js
constant DIRECTIONAL_FALLBACKS (line 3) | const DIRECTIONAL_FALLBACKS = {
constant DIRECTIONAL_SUFFICES (line 12) | const DIRECTIONAL_SUFFICES = Object.keys(DIRECTIONAL_FALLBACKS);
function getDefaultStyleValue (line 14) | function getDefaultStyleValue(key, flatStyle) {
FILE: getStyleValues.js
function getStyleValues (line 5) | function getStyleValues(keys, style) {
FILE: registry.js
function registerAnimation (line 5) | function registerAnimation(animationName, animation) {
function getAnimationByName (line 9) | function getAnimationByName(animationName) {
function getAnimationNames (line 13) | function getAnimationNames() {
function initializeRegistryWithDefinitions (line 17) | function initializeRegistryWithDefinitions(definitions) {
FILE: typings/react-native-animatable.d.ts
type EasingFunction (line 17) | type EasingFunction = { (t: number): number };
type Easing (line 18) | type Easing =
type Animation (line 50) | type Animation =
type Direction (line 114) | type Direction =
type TransformKeys (line 120) | type TransformKeys =
type AnimatableProps (line 135) | interface AnimatableProps {
type AnimatableAnimationMethods (line 154) | type AnimatableAnimationMethods = Partial<{
type AnimatableComponent (line 158) | interface AnimatableComponent
type CustomAnimation (line 189) | interface CustomAnimation