Search code examples
flutterdartcookiesxmlhttprequest

How do i create a cookie for the first time in flutter


I want to create a cookie for storage for a post request but i am facing challlenges on what to understand

I tried creating a cookie class and a handle cookie method but the creation doesnt seem to work and it stops my login from working


Solution

  • For saving any data to local storage of the device you can use several solutions in flutter.

    Especially for your problem I recommend flutter_secure_storage. It is a good option for storing simple and sensitive data.