Posts by Fernando Vieira • 26 points
1 post
-
1
votes2
answers676
viewsA: Persist currentUser firebase with React Native
I’ve been through it and I’ve managed to solve it in a simple way: isLogged() { if(firebase.auth().currentUser){ //Esta logado então faça algo ... } } componentDidMount() { isLogged(); } The…