How to Store Data In Flutter Secure Storage

Поділитися
Вставка
  • Опубліковано 6 вер 2024
  • In this video, you will learn how to store, read and delete data in Flutter Secure Storage. Flutter Secure Storage provides API to store data in secure storage. Keychain is used in iOS, KeyStore based solution is used in Android. Flutter Secure Storage is more likely the same as shared preferences but with additional layer of security. Flutter Secure Storage is mainly used to store sensitive data like JWT token or biometric data. Watch the video for more implementation details !
    Subscribe to our channel 👉 shorturl.at/uCET4
    If you enjoyed this video be sure to give it a like and subscribe for more!
    ChatGPT: Here's how to get a job at Google, Meta, Tesla ...
    • 5 Tips to get a job at...
    ChatGPT generates NFTs ! New Passive Income With ChatGPT !
    • How to generate images...
    I Lost $XXX after OpenAI's Secret Key LEAKED !!
    • I Lost $XXX after Open...
    Web Scraping using ChatGPT | Coded by ChatGPT
    • How to create a Web Sc...
    Flutter ChatGPT using OpenAI's GPT-3 | Flutter Chatbot
    • Flutter ChatGPT using ...
    How to Manage State Using Flutter GetX | Flutter State Management • GetX State Management ...
    How to Manage State Using Flutter Provider | Flutter State Management • Flutter Provider State...
    How to Solve Vertical viewport was given unbounded height | Flutter Common Error
    • How to Solve Vertical ...
    Installation & Configuration | Flutter Firebase Tutorial #1
    • Installation & Configu...
    Firebase RealTime Database (CRUD) | Flutter Firebase Tutorial #3
    • Firebase RealTime Data...
    How To Create A Flutter Table Calendar In Just 5 Minutes!
    • How To Create A Flutte...
    Dropdown in Flutter for creating flexible, reusable user interfaces
    • Dropdown in Flutter fo...
    Object-oriented Programming in Dart
    • OOP Tutorials
    Flutter Project Ideas
    • Flutter Project Ideas
    Flutter Package Tutorials
    • Flutter Package Tutorials
    #fluttertutorialforbeginners

КОМЕНТАРІ • 7

  • @SureshVanga-mq9qo
    @SureshVanga-mq9qo Місяць тому +2

    But when i am doing auto login case, i am calling deleteAll function in secure storage, then again write function calling, it shows Error: PlatformException(Unexpected security result code, Code: -25300, Message: The specified item could not be found in the keychain., -25300, null)--
    So please use deleteAll function also please.

  • @tutosolve
    @tutosolve 15 днів тому +1

    we should not return dynamic, you can use Future is better, right?

    • @AIWithFlutter
      @AIWithFlutter  5 днів тому

      Yup, you are right. You can actually use Future.

  • @flutter-fm1kl
    @flutter-fm1kl 2 місяці тому +1

    Bro, what should I use SQLite or Hive for local storage

    • @AIWithFlutter
      @AIWithFlutter  2 місяці тому

      Hi, it depends on what data you wanted to store. SQLite stores structured data in row and column while hive store key value pairs. If both ways of storing data workable in your case, go for hive. Hive will be much faster than SQLite.

    • @antoniofuller2331
      @antoniofuller2331 2 місяці тому

      ​@@AIWithFlutter but firebase is not key-value pair, is it?