How to draw over a picture in React Native?
I have an app that uses expo-camera to take a picture. I would like to implement a function that would let user to draw over a taken picture. What is the best way to achieve this? What have I tried?…
I have an app that uses expo-camera to take a picture. I would like to implement a function that would let user to draw over a taken picture. What is the best way to achieve this? What have I tried?…
After the install of react-native-vision-camera there is this error that shows up. I've tried to downgrade the versions but again i can the same error. Error: react-native-reanimated:configureCMakeDebug[arm64-v8a] FAILED Deprecated Gradle features were used in this build, making it incompatible with…
My react native app was running correctly, but suddenly I started getting error: error 1: Execution failed for task ':react-native-webview:compileDebugKotlin'. so for this in android/build.gradle I added kotlinVersion = "1.5.31" and also dependencies added classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31". After this I got…
const SignIn = ({navigation}) => { const [data, setData] = React.useState({ username: '', password: '', check_textInputChange: false, secureTextEntry: true, isValidUser: true, isValidPassword: true, }); const { colors } = useTheme(); const { signIn } = React.useContext(AuthContext); . . const loginHandle…
I am currently woking in a react native projects It have these packages as dependencies "dependencies": { "@react-native-async-storage/async-storage": "^1.15.5", "@react-native-community/checkbox": "^0.5.8", "@react-native-community/cli": "^7.0.3", "@react-native-community/clipboard": "^1.5.1", "@react-native-community/datetimepicker": "^3.5.2", "@react-native-community/masked-view": "^0.1.11", "@react-native-picker/picker": "^1.16.3", "@react-navigation/drawer": "^5.12.5", "@react-navigation/material-top-tabs": "^5.3.15", "@react-navigation/native": "^5.9.4", "@react-navigation/stack": "^5.14.5", "@twotalltotems/react-native-otp-input":…
My react native project build fails somehow because of this error: Execution failed for task ':app:mergeDebugNativeLibs'. > A failure occurred while executing com.android.build.gradle.internal.tasks.MergeNativeLibsTask$MergeNativeLibsTaskWorkAction > 2 files found with path 'lib/arm64-v8a/libfbjni.so' from inputs: - C:UsersAntonio.gradlecachestransforms-37cca348744e25f57fc2d9f871aa73c9atransformedjetified-react-native-0.71.0-rc.0-debugjniarm64-v8alibfbjni.so - C:UsersAntonio.gradlecachestransforms-38b0f5c7017bf081f79b63ea5b053dc0transformedjetified-fbjni-0.3.0jniarm64-v8alibfbjni.so If you are using…
While running react native app I am getting following error: ` Task :app:mergeDebugNativeLibs FAILED Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0. Use '--warning-mode all' to show the individual deprecation warnings. See https://docs.gradle.org/6.9.2/userguide/command_line_interface.html#sec:command_line_warnings 574…
I have a react-native project which will fetch all of a users Ethereum tokens, hopefully, using the Alchemy SDK. I have a function that should retrieve all token balances according to the documentation. import 'react-native-get-random-values'; import '@ethersproject/shims'; import { Network,…
I am trying to create an edit function for updating a task that was previously written. I have tried this so far but apparently the prompt is only for the browser. Would this even work? What are alternatives to create…
I just started studying front-end development and I'm struggling with a node.js error. Typing 'npm start' in my VSCode terminal used to work fine for simple tutorial projects with just an index.html, script.js, and style.css file. (without a package.json file)…