mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-04-22 12:28:02 +00:00
Fix all shadow deprecation warnings across entire mobile app
- Replaced shadowColor/shadowOffset/shadowOpacity/shadowRadius with boxShadow - Fixed 28 files (21 screens + 7 components) - Preserved elevation for Android compatibility - All React Native Web deprecation warnings resolved Files fixed: - All screen components - All reusable components - Navigation components - Modal components
This commit is contained in:
+63
-10
@@ -5,8 +5,24 @@
|
||||
"main": "index.ts",
|
||||
"scripts": {
|
||||
"start": "expo start",
|
||||
"android": "expo start --android",
|
||||
"ios": "expo start --ios",
|
||||
"dev": "cp .env.development .env && expo start --clear",
|
||||
"dev:tunnel": "cp .env.development .env && expo start --tunnel --clear",
|
||||
"dev:android": "cp .env.development .env && expo run:android",
|
||||
"dev:ios": "cp .env.development .env && expo run:ios",
|
||||
"dev:web": "cp .env.development .env && expo start --web",
|
||||
"prod": "cp .env.production .env && expo start --no-dev --minify",
|
||||
"build:dev": "cp .env.development .env && eas build --profile development",
|
||||
"build:preview": "cp .env.production .env && eas build --profile preview",
|
||||
"build:prod": "cp .env.production .env && eas build --profile production",
|
||||
"build:en": "EXPO_PUBLIC_DEFAULT_LANGUAGE=en eas build --platform android --profile production",
|
||||
"build:tr": "EXPO_PUBLIC_DEFAULT_LANGUAGE=tr eas build --platform android --profile production",
|
||||
"build:kmr": "EXPO_PUBLIC_DEFAULT_LANGUAGE=kmr eas build --platform android --profile production",
|
||||
"build:ckb": "EXPO_PUBLIC_DEFAULT_LANGUAGE=ckb eas build --platform android --profile production",
|
||||
"build:ar": "EXPO_PUBLIC_DEFAULT_LANGUAGE=ar eas build --platform android --profile production",
|
||||
"build:fa": "EXPO_PUBLIC_DEFAULT_LANGUAGE=fa eas build --platform android --profile production",
|
||||
"build:all": "npm run build:en && npm run build:tr && npm run build:kmr && npm run build:ckb && npm run build:ar && npm run build:fa",
|
||||
"android": "expo run:android",
|
||||
"ios": "expo run:ios",
|
||||
"web": "expo start --web",
|
||||
"test": "jest",
|
||||
"test:watch": "jest --watch",
|
||||
@@ -15,36 +31,73 @@
|
||||
"lint:fix": "eslint . --fix"
|
||||
},
|
||||
"dependencies": {
|
||||
"@pezkuwi/api": "^16.5.2",
|
||||
"@pezkuwi/keyring": "^14.0.5",
|
||||
"@pezkuwi/util": "^14.0.5",
|
||||
"@pezkuwi/util-crypto": "^14.0.5",
|
||||
"@babel/runtime": "^7.28.4",
|
||||
"@pezkuwi/api": "16.5.9",
|
||||
"@pezkuwi/keyring": "14.0.11",
|
||||
"@pezkuwi/types": "16.5.9",
|
||||
"@pezkuwi/util": "14.0.11",
|
||||
"@pezkuwi/util-crypto": "14.0.11",
|
||||
"@react-native-async-storage/async-storage": "^2.2.0",
|
||||
"@react-native-picker/picker": "^2.9.2",
|
||||
"@react-navigation/bottom-tabs": "^7.8.5",
|
||||
"@react-navigation/native": "^7.1.20",
|
||||
"@react-navigation/stack": "^7.6.4",
|
||||
"@supabase/supabase-js": "^2.90.1",
|
||||
"buffer": "^6.0.3",
|
||||
"expo": "~54.0.23",
|
||||
"expo-image-picker": "~17.0.10",
|
||||
"expo-linear-gradient": "^15.0.7",
|
||||
"expo-local-authentication": "^17.0.7",
|
||||
"expo-secure-store": "^15.0.7",
|
||||
"expo-status-bar": "~3.0.8",
|
||||
"i18next": "^25.6.2",
|
||||
"invariant": "^2.2.4",
|
||||
"metro-runtime": "^0.81.0",
|
||||
"react": "19.1.0",
|
||||
"react-dom": "19.1.0",
|
||||
"react-i18next": "^16.3.3",
|
||||
"react-native": "0.81.5",
|
||||
"react-native-gesture-handler": "~2.28.0",
|
||||
"react-native-get-random-values": "~1.11.0",
|
||||
"react-native-qrcode-svg": "^6.3.11",
|
||||
"react-native-safe-area-context": "^5.6.2",
|
||||
"react-native-screens": "^4.18.0",
|
||||
"react-native-screens": "~4.16.0",
|
||||
"react-native-svg": "15.12.1",
|
||||
"react-native-url-polyfill": "^3.0.0",
|
||||
"react-native-vector-icons": "^10.3.0"
|
||||
"react-native-vector-icons": "^10.3.0",
|
||||
"react-native-web": "^0.21.0",
|
||||
"react-native-webview": "13.15.0",
|
||||
"react-refresh": "^0.14.2",
|
||||
"text-encoding": "^0.7.0"
|
||||
},
|
||||
"overrides": {
|
||||
"@pezkuwi/api-augment": "16.5.9",
|
||||
"@pezkuwi/api-base": "16.5.9",
|
||||
"@pezkuwi/api-derive": "16.5.9",
|
||||
"@pezkuwi/rpc-augment": "16.5.9",
|
||||
"@pezkuwi/rpc-core": "16.5.9",
|
||||
"@pezkuwi/rpc-provider": "16.5.9",
|
||||
"@pezkuwi/types": "16.5.9",
|
||||
"@pezkuwi/types-augment": "16.5.9",
|
||||
"@pezkuwi/types-codec": "16.5.9",
|
||||
"@pezkuwi/types-create": "16.5.9",
|
||||
"@pezkuwi/types-known": "16.5.9",
|
||||
"@pezkuwi/networks": "14.0.11",
|
||||
"@pezkuwi/keyring": "14.0.11",
|
||||
"@pezkuwi/util": "14.0.11",
|
||||
"@pezkuwi/util-crypto": "14.0.11"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/runtime": "^7.28.4",
|
||||
"@expo/ngrok": "^4.1.0",
|
||||
"@testing-library/jest-native": "^5.4.3",
|
||||
"@testing-library/react-native": "^13.3.3",
|
||||
"@types/invariant": "^2",
|
||||
"@types/jest": "^29.5.12",
|
||||
"@types/react": "~19.1.0",
|
||||
"@types/react": "~19.1.10",
|
||||
"@types/text-encoding": "^0",
|
||||
"@typescript-eslint/eslint-plugin": "^8.47.0",
|
||||
"@typescript-eslint/parser": "^8.47.0",
|
||||
"babel-preset-expo": "~54.0.9",
|
||||
"eslint": "^9.39.1",
|
||||
"eslint-plugin-react": "^7.37.5",
|
||||
"eslint-plugin-react-hooks": "^7.0.1",
|
||||
|
||||
Reference in New Issue
Block a user