Hi guys,
I have an issue, I hope you can help me.
I am trying to implement a login for my Flutter web app.
I want to implement that if the user closes the browser or reloads the page the Flutter app searches for the session id, which was saved in the local storage of the browser. With the session id I can get the user id which I use to retrieve the user object. In that way, I repopulate the data in the classes and the pages without having the user log in again.
My issue is that to retrieve a user by user id I need to use the Dart SDK. The user object of the Dart SDK is different from the Flutter SDK.
I could retrieve the user by using account.get() from the Flutter SDK, but all classes and objects are rebuilt when I refresh the page in the browser so the object will be null.
Do you have a workaroud for the issue?
Recommended threads
- Attach Dart debugger for locally deploye...
Hello there, I was wondering if it is possible to attach debugger to dart function, that I run locally. It would make development much easier :-). Thank you.
- total parameter not working correctly in...
Hello Appwrite team, I'm experiencing issues with the total parameter in the listRows() method (TablesDB) across multiple SDKs. **Issue 1**: Node.js SDK (node...
- Relationship lists aren't showing
In flutter, when I perform a listRows function for my table which contains various relationships in addition to normal data, I am not getting the relationships ...