Hey all, loving this so far. Very close to submitting to app store. I have a question that may make me seem like an idiot:
I'm authenticating to a laravel backend with sanctum and getting an api token. Currently I was storing that token in session in nativephp, however, i realize this is causing the user to get logged out (presumably when the local mobile session dies?).
Seems like i should instead store this token in SecureStorage, and then fetch this token when they visit the app and log them in again with it?
Setting to storage and retrieving from storage makes sense...but I'm too stupid to figure out where i need to add the ability to read from storage and authenticate the user again...