Back to docs
Animation

Rotate In

Rotating entrance with scale-up for playful UI accents.

Install

npx shadcn@latest add @native-bits/rotate-in

Dependencies

react-native-reanimated
Try in Sandbox
animationentrancemobile

Props

PropTypeDefaultDescription
childrenReactNode-Animated content
degreesnumber300Rotation amount
durationnumber700Duration in ms

Usage

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

<RotateIn degrees={260} duration={680}>
  <ActionIcon />
</RotateIn>
```

Source code

Loading...