react native storage

JavaScript
import { AsyncStorage } from 'react-native';

await AsyncStorage.setItem('@Store:key', 'Example.');

const data = await AsyncStorage.getItem('@Store:key');
//data = "Example."
npm install react-native-storage
npm install @react-native-community/async-storage

Source

Also in JavaScript: