Posts by Alefe Chorna • 81 points
6 posts
-
1
votes1
answer175
viewsA: Uri in image is not appearing
The resolution of the image is too large to appear on the mobile screen. To solve, just add width and height in image style. <Image style={{width: 150, height: 150}}…
-
1
votes1
answer204
viewsA: Form value API Request - Javascript Axios - Ajax
This error happens when you pass to the method onclick a function that does not exist. Put all your code inside a function. <input id="procurar" type="text" name="user"> <button…
-
0
votes2
answers4130
viewsA: Run React Native application on a Windows PC iphone
Unable to execute command react-native run-ios in Windows, therefore, to compile the project code done in React Native you need the Xcode tool that only works in OSX (Apple Operating System). There…
-
2
votes1
answer197
viewsA: What problem is occurring in Axios with this HTTP call?
You are not exporting the function autenticacao. Use ... export function autenticacao(email, senha) {
-
0
votes2
answers121
viewsA: Why do I need to use a constructor to create my style variable?
The constructor is prompted because it is not possible to declare variables with the keyword this out of the same, therefore, the method constructor is a special type of method for creating and…
-
1
votes1
answer948
viewsA: React Native: Remove goBack() function from Android’s physical button?
When the event of hardwareBackPress is fired or you return to the previous screen of your Stack or you cancel through conditions. For example, create a variable that will indicate whether the search…