Back to docs
Animation

Fade In Up

Reveal children by fading and translating up.

Install

npx shadcn@latest add @native-bits/fade-in-up

Dependencies

react-native-reanimated
Try in Sandbox
animationentrancemobile

Props

PropTypeDefaultDescription
childrenReactNode-Animated content
delaynumber0Delay in ms
durationnumber600Duration in ms

Usage

```tsx
import { fade-in-up } from '@/components/native-bits/fade-in-up'

<FadeInUp delay={120}>
  <Card />
</FadeInUp>
```

Source code

Loading...