skip to Main Content

React native – Unmatched route on react-native

Hello, I have a project structured like the picture. I want to go from GetStarted.js to Instruction.js. I'm using the following code: <View> <TouchableOpacity style={styles.button} onPress={() => router.push('./Instructions.js')} > <Text style={styles.buttonText}> Welcome </Text> </TouchableOpacity> </View> but I get an Unmatched…

VIEW QUESTION

Reactjs – Letter B in SVG logo not displaying correctly in React App

Logo converted from .png to .svg and opened the .svg file in VSCode to get the following SVG paths: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="1446px" height="721px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" xmlns:xlink="http://www.w3.org/1999/xlink">…

VIEW QUESTION

js not connecting to html

<head> <title></title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" type="text/css" href="../css/style-index.css"> <script type="text/javascript" src="../js/script.js"></script> </head> in javascript is: alert('test') external js is not connecting to html structure: https://cdn.discordapp.com/attachments/1027105980900708442/1232712295893827635/image.png?ex=662a744a&is=662922ca&hm=5e90d125df3525f31584806fbdc41e91941442f596890bd8c0266e4ab76ca4b4& edit: I also tried to rename project folder to remove all…

VIEW QUESTION
Back To Top
Search