flutter_secure_storage
flutter_secure_storage copied to clipboard
[Windows] Sharing of key-value pair via flutter_secure_storage package
I have 2 apps (let's call them as App1 and App2) which I am running on Windows platform as well. From App1, I am writing a key-value pair (Key: 'Key1', Value: 'Value1') using flutter_secure_storage package:
const storage = FlutterSecureStorage();
await storage.write(key: 'Key1', value: 'Value1');
Then, I am trying to read the same value for the written key (via App1 i.e., 'Key1') from App2:
const storage = FlutterSecureStorage();
String? value = await storage.read(key: 'Key1');
It's not working straight away. Am I doing something wrong ? OR this kind of support itself is not there currently (If yes, is it possible to add this support to the package ?)