Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IAnimation

Determines the interface for the animation Constants. Provides ITiming and IAnimationEasing properties that can be accessed

example
Using the values ```ts import { Animated } from 'react-native'; import { animation } from '@ef-carbon/react-native-style'; const value = new Animated.Value(0); const animiation = Animated.timing(value, { easing: animation.easing.normal, duration: animation.timing.fast, }); ```
see

IAnimationEasing

see

ITiming

see

AnimationEasing

see

Timing

Hierarchy

  • IAnimation

Implemented by

Index

Properties

Properties

easing

easing: IEasing

Easing splines to use with animations

see

IAnimationEasing

see

AnimationEasing

timing

timing: ITiming

Timing values to use for animations

see

ITiming

see

Timing