flutter_secure_storage icon indicating copy to clipboard operation
flutter_secure_storage copied to clipboard

[Windows] Sharing of key-value pair via flutter_secure_storage package

Open ashish-rana-sndk opened this issue 5 months ago • 0 comments

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 ?)

ashish-rana-sndk avatar Jun 11 '25 11:06 ashish-rana-sndk