Mateus Felipe C. C. Pinto

Results 238 comments of Mateus Felipe C. C. Pinto

Why can't it be implemented with a tagged union type? I know the ergonomics of wrapping the values is not the best, but wouldn't the general problem be solved?

I don't know about this, I just proposed a solution that fixes the problem without requiring a change to the language. By using this approach, the state goal ("to deprecate...

@nate-thegrate Wouldn't `.p` be very obscure? It would also disregard the style guide about [avoiding abbreviations](https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo/985001f5b97164e3d87ab4f97188622de43e3d23#avoid-abbreviations). The alternative would be to clearly state `a.property`, but at this point It's just...

It's unfortunate that this is still an issue. It seems we have a workaround for CI/CD, but this doesn't happen only when running `flutter build ipa`, it also happens for...

I also have this issue. I'm working on a camera package ([magiceye](https://github.com/mateusfccp/magiceye)). The preview works perfectly in my Xiaomi Mi A2 Lite. However, on my friend's Galaxy J5 Prime the...

@DanilYusupov how did you get to this 0.75 value? Was it arbitrary (try-and-error)? If only we could get this value with any kind of formula, we could at least make...

> version 0.7.0 added some interesting changes > [flutter/plugins@100c747](https://github.com/flutter/plugins/commit/100c7470d4066b1d0f8f7e4ec6d7c943e736f970) > just search for aspectRatio through the commit Can we consider this solved? Did someone test version 0.7 against the problematic...

One possible alternative is to do this way: ```dart final class ConstantColors { const ConstantColors._({ this.black = '0x000000', this.red = '0xFF0000', }); const factory ConstantColors() = ConstantColors._; final String black;...

Looking forward to this as well. I would like to experiment with augmentations in a code generator I have, but if we are going to wait for stable augmentation to...