Back to docs
Animation

Slide In Right

Move in from the right edge for panel transitions.

Install

npx shadcn@latest add @native-bits/slide-in-right

Dependencies

react-native-reanimated
Try in Sandbox
animationentrancemobile

Props

PropTypeDefaultDescription
childrenReactNode-Animated content
offsetnumber80Initial x offset
durationnumber500Duration in ms

Usage

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

<SlideInRight offset={80}>
  <MenuPanel />
</SlideInRight>
```

Source code

Loading...