Curt Weber

Results 9 comments of Curt Weber

For CanvasKit - we use a supersampling technique that improves quality: ``` Transform.scale( filterQuality: FilterQuality.medium, scale: 0.5, child: Transform.scale( scale: 2, child: SvgPicture(...), ), ) ``` Keep in mind this...

If the clipping is only happening on iOS, it could very likely be a bug related to Impeller. You should probably open a flutter issue showing a difference between skia/impeller....

There is likely an ancestor widget that is adding clipping (such as a scrollview). You can't pop that clip using `OverflowBox`, but you could perform this same supersampling strategy using...

Does this only reproduce on iOS(Impeller)? Testing with a parent clip (scrollview) doesn't reproduce on web (canvaskit) for me. FWIW this technique isn't needed for iOS and you could create...

This is captured within the flutter repo and you can follow for updates here: [#139028](https://github.com/flutter/flutter/issues/139028)

@darshankawar - that looks to be a different issue related to moving the camera while dragging a marker. Dragging appears to be supported with the inclusion of `draggable` on `Marker`....

Originally I wasn't sure whether to file this as a bug or a documentation improvement. When testing this I was using just 1 test/1 file/1 driver. What I noticed was...

Not sure if this is the right place - but I found that `dartify` is different between `dart2js` and `dart2wasm` when it comes to numbers - `dart2js` correctly recognized an...

We use this `insteadOf` functionality since we have multiple dependencies with different SSH keys and we can configure git to use a specific user for different repositories. I could certainly...