Olá professor,
Estou tendo o mesmo erro do colega Marcusvpjesus ao inserir imagens.
InternalError Metro has encountered an error: SHA-1 for file home/alexandre/DocumentosProjetos/Cursos/ReactNative/Instalura/res/img/alura.jpg (/home/alexandre/Documentos/Projetos/Cursos/ReactNative/Instalura/res/img/alura.jpg) is not computed
Meu código:
import React, {Fragment} from 'react';
import {Text, Image} from 'react-native';
const App: () => React$Node = () => {
return (
<Fragment>
<Text>Alexandre</Text>
<Image
source={require('./res/img/alura.jpg')}
/>
<Text>Juliana</Text>
<Image
source={require('./res/img/alura.jpg')}
/>
</Fragment>
);
};
export default App;
Obrigado!