VCSJacob
VCSJacob
``` export default function RootLayout() { const [themeMode, setThemeMode] = useState('light'); const getCurrentTheme = () => { if (themeMode === 'highContrast') { return HighContrastTheme; } return DefaultTheme; }; const currentTheme...
Yes, the icons are rendered correctly when I run `npx expo run:android`, but they are not there when I install the eas build version
I ran npx `expo prebuild` before I used eas build and the issue was gone, the icons rendered.
The issue has came back, icons renders with expo-dev-client build but not with eas build