Hello,
Dude, I can not wait for the method to finish before showing the return, can anyone help me?
getValor(jogador) {
const id_grupo = this.props.grupoSelected.id;
if (jogador.financeiro) {
const arrayFinanceiro = Object.keys(jogador.financeiro);
if (arrayFinanceiro) {
arrayFinanceiro.forEach((grupoKey) => {
if (grupoKey === id_grupo) {
return jogador.financeiro[grupoKey];
}
});
} else return 0;
} else return 0;
}
React native:
<Text>{ this.getValor(jogador) }</Text>