Brandon Trautmann
Brandon Trautmann
Just wanna say thanks to @alexeyinkin... I've been using the package he published while this PR awaits merge, and it's made my life 100000x easier. Looking forward to this merging!...
Any chance we can get this across the finish line? The 3rd party package is now not compatible with latest `analyzer` package (I need to fork). Would love for this...
It would be a shame to close this as WAI. As previously pointed out, forcing an `AppBar` to be declared within the `ShellRoute`'s builder limits flexibility to the underlying routes....
I'm running into a similar issue, though not from an isolate. I use [flutter_background_fetch](https://github.com/transistorsoft/flutter_background_fetch) to periodically update Home Widgets. Part of this update process is to fetch new data for...
> Hi, > > We observe the same issue (in our case this makes the whole app unusable). Are there any other fixes except rolling back the version? Thank you....
> By "migrate", you mean reading all the keys using one access type, and writing them again with the other on a regular app launch, from the foreground? Did you...
> Seems the problem didn't happen but behaved values aren't stored anymore before! When changing the settings, you need to "migrate" values from the previous settings. I described this in...
> I've just reviewed your metod, it simply uses secure storage first, then uses legacy (shared prefs imho) if secure storage fails. This means same values are stored (must be...
> Yes, my mistake. Both storages are indeed FlutterSecureStorage. > > Based on your latest post, it looks like `_legacyStorage` is the one I’ve already been using, and it’s throwing...
The workaround I've gone with is something like the following: ```dart // Mapping here because we cannot await, otherwise the call to // txnStore.inView won't be registered as a dependency....