Animations
Text Slide Vertical

Text Slide Vertical

The text slides in from the y-axis that gives a cool effect. This animation is also generally run on initialisation.

Animation Options

Customize your animation using these options.

Check Customization for more info!

OptionsDescriptionDefault
offsetThe distance from which the text should slide in30
durationHow long should it take to slide in.100 (ms)

Implementation

import { AnimatedWrapper } from 'react-native-micro-interactions';
 
return(
    <AnimatedWrapper animationTrigger='init' animationType='text_slide_vertical'>
        <Text>Hello World!!</Text>
    </AnimatedWrapper>
)