Yegor
Yegor
As the HTML renderer has been deprecated and removed from the default Flutter SDK, we're now closing all issues that affect only the HTML renderer. For more information, please see:...
I think when documenting this feature we should not refer to it as "multi-view". The feature is more like "embedding Flutter apps and widgets into HTML pages" (or maybe into...
Is the problem gone if you pass `filterQuality: FilterQuality.medium`? By default Flutter uses `FilterQuality.low`. HTML ignores this value and uses whatever the browser chooses. CanvasKit passes the value to Skia.
Yes, unfortunately, `high` is only higher quality than `medium` when scaling images up. When scaling them down, `medium` is frequently better (some context: https://github.com/flutter/flutter/issues/76737). The clipping is probably because the...
@goderbauer @flar I relabeled this issue as a general framework issue. It seems despite our efforts [here](https://github.com/flutter/flutter/issues/76737), [here](https://github.com/flutter/engine/pull/24797), [here](https://github.com/flutter/engine/pull/24582), and [here](https://github.com/flutter/assets-for-api-docs/pull/134), our API is still confusing.
Related: https://github.com/flutter/flutter/issues/78659
If this turns out to be caused by some custom remotes again, how about we consider adding a new remote that doesn't use a common name such as `origin` or...
Has anyone started or is anyone interested in starting a DEP for this?
I think Dart should take advantage of the static type system. Could, for example, extension methods satisfy most of the pipeline operator use-cases, without the additional call syntax?
I like this proposal. This will help with canvas use-cases (WebGL, 2D), in addition to the original motivation of allowing flicker-free image loading UX. A couple of comments though: ##...