How to make auto sign in app

I created an app that includes a sign-in feature. When the user sign-up for the first time and then relaunches the app, still he gets the sign-in screen. Can anyone help to get rid of sign in again and again.
Thanks :slight_smile:

If the user signs in set a stored variabele to true.
And When the users opens the screen then.
Then check if the stored variabele is equals null.
If not then the user is signed in so you can navigatie him to the home page.

2 Likes

this is it:
Screenshot 2021-08-22 110528

better use firebase authenticate then you can control your user.

Thanks everyone