expo / snack

Expo Snack lets you run Expo in the browser.
https://snack.expo.dev
MIT License
347 stars 96 forks source link

The `useLegacyImplementation` prop is not available with Reanimated 3 as it no longer includes support for Reanimated 1 legacy API. Remove the `useLegacyImplementation` prop from `Drawer.Navigator` to be able to use it. #551

Open patel-harshal opened 5 months ago

patel-harshal commented 5 months ago

Summary

expo version 49 or 50 not support drawer navigation in snack expo.

What platform(s) does this occur on?

Android, Web

SDK Version

49 or 50

Reproducible demo or steps to reproduce from a blank project

import * as React from 'react'; import { View, Text } from 'react-native'; import { NavigationContainer } from '@react-navigation/native'; import { createDrawerNavigator } from '@react-navigation/drawer';

function Feed() { return ( <View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>

Feed Screen
</View>

); }

function Article() { return ( <View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>

Article Screen
</View>

); }

const Drawer = createDrawerNavigator();

function MyDrawer() { return (

); } export default function App() { return ( ); }