-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Closed
Description
Minimal reproducible example
npx create-expo-app@latest test-app && cd test-app && npm install && npm run web
Steps to reproduce
Currently creating an app with create-expo-app as per tutorial:
npx create-expo-app@latest StickerSmash
cd StickerSmash
npm install
npm run web
results in the following warnings in console:
WARN "shadow*" style props are deprecated. Use "boxShadow".
...
WARN props.pointerEvents is deprecated. Use style.pointerEvents
Both were previously reported in the following issues:
- expo router entry.js props.pointerEvents is deprecated. Use style.pointerEvents #33290
- Getting warning "shadow*" style props are deprecated. Use "boxShadow" for expo-web in nx-workspace without webpack. react-navigation/react-navigation#11730
(Issues seem to be closed as stale)
The warnings seem benign, however getting cryptic warnings from the basic tutorial scaffolding setup is probably not the best possible impression.
Environment
expo-env-info 1.3.4 environment info:
System:
OS: Windows 10 10.0.19045
Binaries:
Node: 22.17.0 - C:\Program Files\nodejs\node.EXE
Yarn: 1.22.22 - ~\AppData\Roaming\npm\yarn.CMD
npm: 11.4.2 - C:\Program Files\nodejs\npm.CMD
npmPackages:
expo: ~53.0.17 => 53.0.19
expo-router: ~5.1.3 => 5.1.3
react: 19.0.0 => 19.0.0
react-dom: 19.0.0 => 19.0.0
react-native: 0.79.5 => 0.79.5
react-native-web: ~0.20.0 => 0.20.0
Expo Workflow: managed
Expo Doctor Diagnostics
[email protected]
Ok to proceed? (y) y
15/15 checks passed. No issues detected!
NovaBG03, bedebrito and hoywu