Azbuky

Results 5 comments of Azbuky

Seems related to https://github.com/flutter/engine/pull/19924 As a workaround `--dart-define=FLUTTER_WEB_USE_EXPERIMENTAL_CANVAS_TEXT=false` fixes the problem but it only works in release builds.

For anyone still needing this, I managed to fixed the issue by cropping the image to the required rect in SCImageView.m - scaleAndResizeCIImage:forRect: ```diff verticalScale = horizontalScale; } - return...

@franarolas what web renderer are you using, html or canvaskit?

@mikeesouth you are deleting the service worker's cache but depending on the [Cache-Control](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control) headers sent by the server, the browser can also cache the files in it own caches (which...

@mikeesouth `no-cache` does not prevent the browser from caching the resource, it will just always validate with the server before using it. Also after the service worker caches the new...