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
- Realtime: Listener not triggered on upda...
I self host appwrite 1.8.1. The genereal functionallity works fine. But my realtime subscription isn't updating. I see "Received heartbeat response from realtim...
- Impossible to get USER after createEmail...
Am using provider to deal with functions linked to appwrite. Here is my login. Future<String?> login(String email, String password) async { try { aw...
- Weird permission failure
when creating an account I use following methods: ``` Future<void> register(String email, String password, String username) async { final user = await accoun...