Basit Mir
Basit Mir
- Fix React is not defined issue - Fix Enter the URL issue - Update Imports - Update react-native-webview package
- Getting this error Versions ( "react-native-webview": "^13.8.7". react-native-translator:"^1.2.0", "react-native": "0.69.0") @KoreanThinker @doublelam 
Upgrading React Native to 0.78, which supports React 19, currently causes an issue where the package throws the following error (see screenshot). To address this, a PR has been created:...
Currently, upgrading React Native to the latest version causes an issue with the JSX import. This PR resolves the issue by updating the necessary packages. 
### Summary As soon as map is opened the app is crashing ### Reproducible sample code ```TSX import React from 'react'; import { Dimensions, StyleSheet, View } from 'react-native'; import...
### Description i am using "react-native-gesture-handler": "^2.25.0", "react-native-reanimated": "^4.0.0-beta.5", ``` const pressed = useSharedValue(false); const tap = Gesture.Tap() .onBegin(() => { pressed.value = true; }) .onFinalize(() => { pressed.value =...