Ao adicionar a Api e rodar o projeto recebi o seguinte erro : Invariant Violation: Tried to get Frame for out or range index NaN..
segue o link do github : https://github.com/Viktoorrocha/InstaAluramobile
Ao adicionar a Api e rodar o projeto recebi o seguinte erro : Invariant Violation: Tried to get Frame for out or range index NaN..
segue o link do github : https://github.com/Viktoorrocha/InstaAluramobile
Viktor, boa tarde!
O componentDidMount
está fazendo uma requisição para uma url inválida a url corretá é https://instalura-api.herokuapp.com/api/public/fotos/rafael
Fazendo com que a função fique:
componentDidMount() {
fetch('http://localhost:8080/api/public/fotos/rafael')
.then(resposta => resposta.json())
.then(json => this.setState({fotos: json}));
}
Espero ter ajudado e bons estudos!