Tien Do Nam

Results 300 comments of Tien Do Nam

Can confirm this in `3.2.2`. Even the simplest configuration has a delay on pop. This makes it unusable in Flutter Web... ```dart @CustomAutoRouter( replaceInRouteName: 'Page,Route', routes: [ AutoRoute(page: FirstPage, initial:...

Hi, currently, this library generates the dart file only if input changes. That's why your issue should be minor. I will investigate if there is a way to force a...

Currently, I have no plans to implement this feature because there are still lots of open questions. This library generates the locale enum - should all locales be specified and...

Released in `v3.0.0-dev.0`.

Hi, `build.yaml` is a feature by [build_runner](https://pub.dev/packages/build_runner). I don't know if they support it

Hi, yep, `riverpod` is the injection solution in your case. Your current solution is quite clean because now the translations are also depending on some riverpod provider. There are also...

`myEnResolver` is the English plural resolver. The default plural handling will be used if you leave it out :)

Shouldn't `flutter build macos` build an universal build by default? I am maintainer of [LocalSend](https://github.com/localsend/localsend) and I did not do anything to ensure M1 support. Maybe an ARM based computer...

Another solution is [slang](https://pub.dev/packages/slang). It doesn't depend on Flutter, so you can use it on your backend too. With [Translation Overrides](https://pub.dev/packages/slang#-translation-overrides) you can load translations dynamically without sacrificing type-safety. Disclaimer:...

How does it work with enums? I have `last_message.message_type AS "message_type?: MessageType"` but I get `unexpected null; try decoding as an Option`