native_storage
Provides a unified API for accessing platform-native storage functionality, such as the iOS Keychain and Android SharedPreferences.
Sync and async APIs are provided for all storage operations, where asynchronous APIs use an Isolate
to perform the operation in
a background thread.
See Web support below for more info on how this package behaves in a browser environment.
Storage Types
All implementations conform to the NativeStorage
interface, which provides a simple API for reading and writing key-value pairs.
There are two variations of NativeStorage
: NativeLocalStorage
, and NativeSecureStorage
. By default, a NativeLocalStorage
instance is returned.
A third variation, IsolatedNativeStorage
, provides an asynchronous API and, thus, does not conform to the NativeStorage
interface.
See Isolated Storage for more information.
Local Storage
Using a NativeLocalStorage
instance, you can read/write values to your application's local data storage which are sandboxed to your
application and persisted across app restarts.
final storage = NativeStorage();
storage.write('key', 'value');
print(storage.read('key')); // value
The local storage APIs are useful for storing non-sensitive data that should be available across app restarts and be deleted alongside the app.
The platform implementations for local NativeLocalStorage
are:
Platform | Implementation |
---|---|
iOS/macOS | UserDefaults |
Android | SharedPreferences |
Linux | JSON file |
Windows | Registry |
Web | localStorage |
Secure Storage
Sometimes, you need to store sensitive data, such as user credentials, and storing these in local storage would risk them being compromised.
In these cases, use the secure
getter on a NativeStorage
instance to retrieve a secure variation.
Values stored in a secure storage are encrypted before being written to the platform's native storage mechanism and decrypted when read. They do not share storage space with the local storage values.
final secureStorage = storage.secure;
secureStorage.write('key', 'value'); // value is encrypted before being stored
print(secureStorage.read('key')); // value
The platform implementations for NativeSecureStorage
are:
Platform | Implementation |
---|---|
iOS/macOS | Keychain |
Android | EncryptedSharedPreferences |
Linux | libsecret |
Windows | Security and Identity API |
Web | In-Memory (See Web support) |
Isolated Storage
The APIs shown above are all synchronous, which means they will block the main thread while reading/writing data. For Flutter applications, it is always preferred to run storage operations in the background.
Use the isolated
getter on a NativeStorage
instance to get an isolated variation which will prevent blocking your UI.
final isolatedStorage = storage.isolated;
await isolated.write('key', 'value'); // value is written in a background thread
print(await isolated.read('key')); // value
These can be combined to create a secure, isolated storage for example:
final secureIsolatedStorage = storage.secure.isolated;
await secureIsolatedStorage.write('key', 'value'); // value is encrypted and written in a background thread
print(await secureIsolatedStorage.read); // value
The platform implementations for IsolatedNativeStorage
are the same as the local/secure storage implementations, but the operations
are performed using a Dart Isolate.
Web support
When running in a browser environment, there is no way to securely persist
sensitive data. As a result, the NativeSecureStorage
implementation for web is an in-memory store that does not persist data across
page reloads. The NativeLocalStorage
implementation for web, however, uses the browser's localStorage
API for persistence.
The IsolatedNativeStorage
implementations for web perform as follows:
NativeLocalStorage.isolated
- Provides an async interface over thelocalStorage
API, but is not actually isolated.NativeSecureStorage.isolated
- Uses the in-memory store, performing operations in a Web Worker.