Dan Field

Results 553 comments of Dan Field

@devmil - I've only experienced this as a user, not a developer, but you get two key inputs. @cbracken would probably know better about how this is handled because I'm...

So do we just need to update the defaults for `TextEditingValue` objects?

Thanks @joshuadeguzman ! I've started some work on this. Right now I'm working on refining some requirements with @joshua-s around encryption.

May want to consider https://pub.dev/packages/flutter_secure_storage - it may be usable with the other packages.

So flutter_secure_storage is really meant for storing a key, rather than storing larger amounts of data. If there's only a smaller amount of data to store it's probably fine, but...

The general workflow should be: - use `local_auth` to guard access to the keys - store the keys using `flutter_secure_storage` - use the keys to decrypt whatever is stored locally...

Another option is to just use a simple file to store this that we encrypt. E.g. something encoded with JSON codec or the FlutterStandardCodec.

I think right now our best bet would be to use native platform APIs with a custom plugin. I'm going to do a quick experiment on this.

My fork of Lottie Flutter renders a good number of Lottie files correctly, however, I wouldn't quite regard it as production ready, for at least the following reasons: - I'm...

Dart can't resize bytedata, but the other points stand