Aloïs Deniel

Results 92 comments of Aloïs Deniel

Sorry for the delay, I was on a big refactoring pass. A new version is available. Please tell me if it works better on your side! Note that there are...

In the meanwhile, I published a 3.0.0 version yesterday with null-safety (for the main package) support and upgraded dependencies. Let me know after upgrading if it works for you!

Sorry for the delay, I was on a big refactoring pass. A new version is available. Please tell me if it works better on your side! Note that there are...

Ah yes, I forgot this part of the documentation. The new recommended way for accessing localizations is : ```dart extension AppLocalizationsExtensions on BuildContext { AppLocalizationsData get localizations { return Localizations.of(this,...

Il do a full pass on documentation by the end of the week to make sure everything is up to date. In the meantime, you can refer to [the provided...

Sure, I'll try to add it ! Thanks for the proposal.

Do you talk about conditions label? Could you elaborate more or give an example?

Sorry for the delay, I was on a big refactoring pass. A new version is available. Please tell me if it works better on your side! Note that there are...

Sorry for the delay, I was on a big refactoring pass. A new version is available. Please tell me if it works better on your side! Note that there are...

From my understanding, you should be able to define extensions on `String` for that use case! ```dart extension SuffixExtension on String { String suffix(String suffix) => this + suffix; String...