I want to store e.g. the password and the username of the user locally, that the user doesn't always need to log in again.
I just saw the tutorial How to store data in local storage with react native? but is there no way, to store a json with data in e.g. a normal folder. What are the benefits or are the benefits?
Example:
user {
"name":"max",
"password":"123456"
}
(I know storing passwords in plain text isn't that smart, it is just an example :D)
Edit
Is there maybe a way to have like a SQL Database locally on the users device?