Posts by Arthur • 21 points
2 posts
-
0
votes1
answer183
viewsA: Problems to render on screen in React Native
According to the documentation, in your Routes.js file it is necessary to configure it similar to this: import { createStackNavigator } from '@react-navigation/stack'; const Stack =…
-
2
votes2
answers34
viewsA: problems retrieving "Answer" from a request
You can do it that way too: async function getData() { const response = await fetch("https://servicodados.ibge.gov.br/api/v1/localidades/distritos"); const data = await response.json(response);…