Mateus Felipe C. C. Pinto

Results 239 comments of Mateus Felipe C. C. Pinto

> Was this implemented? No. Maybe this is partially or fully solved by class augmentations, but they were not released yet.

You are right, I just read the documentation and there are few instructions about the back button. Considering this documentation, I think `automaticallyImplyLeading` is a misleading name, specailly because it...

Uma alternativa que requere menos LIXO (a.k.a JS) é a de usar o [prefer-color-scheme](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme). Nesse caso, não teríamos a configuração de mudar entre um tema ou outro, essa opção viria...

Should we do it automatically or should we prompt for user input? Like `[Y/n]`

For now, we have the option of using `https://pub.dev/packages/ordinal_formatter`, but it only supports a few locales, and I think this actually belongs to this package.

@alexeyinkin I think it could be possible. Currently, the better way to do this is by using _Dart defines_, which are resolved at compile-time, but I agree that they are...

> The cast to `List` is necessary because `T` could be `Never` (or any other type which is not a supertype of `int`). So we might well want to promote...

> It's sometimes a very fitting name when you're writing a compiler. Or, more widely relevant, a macro. This is exactly my case. I'm writing an interpreter in Dart and...

> as far as I can tell, "final class" is the only ambiguity, right? Could we only allow using the word `class` as non-global variables? alternatively, we just check if...

@mpfaff said: > I'd much prefer using `it` as the default parameter name. Coming from Kotlin and Rust, I often use `_` or `_foo` to denote unused parameters. > >...