Skip to main content
Version: 0.5.0

Installation

Prerequisites

Reanimated Tab View requires the following peer dependencies:

Make sure you have them installed and configured in your project before proceeding. Follow the official installation guides:

Install the package

yarn add reanimated-tab-view

Or using npm:

npm install reanimated-tab-view

Wrap your app with GestureHandlerRootView

Ensure your app is wrapped with GestureHandlerRootView from react-native-gesture-handler:

import { GestureHandlerRootView } from 'react-native-gesture-handler';

export default function App() {
return (
<GestureHandlerRootView style={{ flex: 1 }}>
{/* Your app content */}
</GestureHandlerRootView>
);
}

Platform support

PlatformSupported
iOSYes
AndroidYes
WebPartial

Collapsible headers are supported on iOS and Android.