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? How does it look like when compiling the app? Could there be an error? :)
Example:
user {
"name":"max",
"password":"123456"
}
(I know storing passwords in plain text isn't that smart, it is just an example :D)