codelovercc

Results 37 comments of codelovercc

Use `FlutterSecureStorage.setMockInitialValues` instead of mock.

Having this same problem on MacOS. flutter secure storage version 9.0

@rydmike [Enable keychain](https://docs.amplify.aws/flutter/start/project-setup/platform-setup/#enable-keychain) this will help you. I've tested on macOS 12.7.1 (21G920) and Android Simulator API 34, it works.

@rydmike Can you try it in a new flutter project?

@Douglas-Pontes Solution 2: ```dart class MultiCompositeMessageLookup extends CompositeMessageLookup { @override void addLocale(String localeName, Function findLocale) { final canonical = Intl.canonicalizedLocale(localeName); final newLocale = findLocale(canonical); if (newLocale != null) { final...

@stwarwas Just call `initializeInternalMessageLookup(() => MultiCompositeMessageLookup());` at the first line in your `main` method.

I use intl and intl_translation in dart only package, use intl and intl_util in Flutter project, every generated `messages_*.dart` files have `@dart=2.12` by intl_translation. In other word, intl_translation generate libraries...

I don't think so, intl_translation for dart only packages, intl_util for flutter application and packages. You can see the difference of generated codes between them: intl_translation: ^0.19.0 ↓ ```dart ......

> Aforementioned url points to nowhere. As for the topic I think this feature is not implemented. Will this feature be implemented? Thank you.

I'm very happy to pull some requests about this, but I kind of busy at the moment. I think I will back with pull requests someday. I need to understand...