Open davecarlson opened 21 hours ago
I just encountered this problem when trying to upgrade to Expo 52 and react native .76
This is not a problem with this library. I was able to solve this by updating my libs in the package.json. To tell you the truth, I don't know which package upgrade fixed this issue.
Also, I'd like to point out that if you are using "Theme" make sure you fix the breaking change.
import { Theme, ThemeProvider, DefaultTheme, DarkTheme } from '@react-navigation/native'; const LIGHT_THEME: Theme = { ...DefaultTheme, colors: NavTheme.light, }; const DARK_THEME: Theme = { ...DarkTheme, colors: NavTheme.dark, };
By any chance are you using react-native-reusables? That's how I was able to solve this issue, by going through their recent change history.