flutter_localstorage
flutter_localstorage copied to clipboard
📦 Web-compatible LocalStorage for Flutter
I was trying to use this package for web, but it is not working. So does it work for web application?
I stored a file with your flutter SDK and it worked as expected. But now I'm trying to get this file from a native app. And somehow I cant find...
What is the quota? Is it editable? DOMException: Failed to execute 'setItem' on 'Storage': Setting the value of 'asdf' exceeded the quota. at Storage.[_setItem] (http://localhost:56654/dart_sdk.js:100499:27) at Storage.[dartx._set] (http://localhost:56654/dart_sdk.js:100437:25) at Storage.update...
Hello together i am trying using flutter_test. But with localstorage only my first localstorage.ready callback gets called. Here some snippets of my code ```dart final LocalStorage accountStorage = new LocalStorage('account');...
Hi I am migrating my Flutter application to use package version 3.0.6+9 instead of 2.0.0 when calling `setItem('key', [instance])`, In the old version `getItem` gets me a list of `_InternalLinkedHashMap`,...
Solves issue #91.
Hello there, when trying to create a new file in a subfolder that does not exist, an unhandled FileSystemException is thrown with the message: ``` FileSystemException: Cannot create file, path:...
I used to access local storage like this: `LocalStorage(Constants.storage)` but with the updated api there's no way to access the data that used to be at that location. Is there...
Since dart:html is not supported when compiling to Wasm, the correct alternative now is to use dart.library.js_interop to differentiate between native and web
Hi Running a widget test on MacOS seems to break the library. Is this library supported in a widget test run/environment? The execution seems to just stop at time when...