4.3 Secure Store

In this tutorial, you will configure your app to make use of secure store from Expo SDK to enable storing and retrieving data in the form of key-value pairs. At the end of this tutorial, you will be able to:

  • Configure your app with secure store
  • Store and retrieve data using key-value pairs


4.3.1 Dataflow


4.3.2 How to

1. Install expo-secure-store (tested on v11.2.0).

  • $ expo install expo-secure-store

2. Create 'components/LoginComponent.js' file.

3. Update 'components/MainComponent.js' file.


4.3.3 Screenshots