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-rightDependencies
react-native-reanimated
animationentrancemobile
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| children | ReactNode | - | Animated content |
| offset | number | 80 | Initial x offset |
| duration | number | 500 | Duration in ms |
Usage
```tsx
import { slide-in-right } from '@/components/native-bits/slide-in-right'
<SlideInRight offset={80}>
<MenuPanel />
</SlideInRight>
```Source code
Loading...