Upgrade to Expo SDK 57 for Xcode 27 support
- expo 57.0.23, react-native 0.86.3, react 19.2.3 - Remove @react-navigation/* direct deps (unsupported by expo-router 56+) - Drop newArchEnabled and android.edgeToEdgeEnabled (removed from schema) - Enable ios.enableSceneSupport (UIScene lifecycle required by iOS 27 SDK) - Remove deprecated expo-build-properties deploymentTarget (default 16.4) - Add withPodsDeploymentTarget plugin: raise CocoaPods resource bundle targets (RNCAsyncStorage, RNSVG, SDWebImage) to the app minimum - Replace removed StyleSheet.absoluteFillObject with absoluteFill Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
@@ -52,7 +52,7 @@ export default function QrScanModal({ visible, onClose, onScan }: QrScanModalPro
|
||||
<View className="flex-1 bg-black">
|
||||
{/* Camera Full Screen */}
|
||||
<CameraView
|
||||
style={StyleSheet.absoluteFillObject}
|
||||
style={StyleSheet.absoluteFill}
|
||||
facing="back"
|
||||
onBarcodeScanned={scanned ? undefined : handleBarCodeScanned}
|
||||
barcodeScannerSettings={{
|
||||
@@ -61,7 +61,7 @@ export default function QrScanModal({ visible, onClose, onScan }: QrScanModalPro
|
||||
/>
|
||||
|
||||
{/* Mask Overlay with transparent cutout */}
|
||||
<View style={StyleSheet.absoluteFillObject} pointerEvents="none">
|
||||
<View style={StyleSheet.absoluteFill} pointerEvents="none">
|
||||
<View className="flex-1 bg-black/60" />
|
||||
<View style={{ height: squareSize }} className="flex-row">
|
||||
<View className="flex-1 bg-black/60" />
|
||||
@@ -85,7 +85,7 @@ export default function QrScanModal({ visible, onClose, onScan }: QrScanModalPro
|
||||
</View>
|
||||
|
||||
{/* UI Overlay */}
|
||||
<SafeAreaView style={StyleSheet.absoluteFillObject} pointerEvents="box-none">
|
||||
<SafeAreaView style={StyleSheet.absoluteFill} pointerEvents="box-none">
|
||||
<View className="flex-1 justify-between pt-8">
|
||||
{/* Header */}
|
||||
<View className="items-center">
|
||||
|
||||
Reference in New Issue
Block a user