Matej Knopp

Results 169 comments of Matej Knopp

> We can, this issue is just to track that we aren't. I don't think the solution would need matrix inversion. Not quite sure how to do this without inversion...

> For non-perspective transforms the operation can be done without doing a full transform and inverse transform of the paint_bounds by computing the inverse translation. Basically, take the amount added...

I do remember testing rotation when working on the mutator view, but there are probably edge cases that I missed. I'll give this a go.

I have a fix for this here: https://github.com/knopp/engine/commits/macos_fix_platform_view_rotation Just need to find some time to write tests for this.

The fix for this is quite straightforward: - The container view must implement `isFlipped` otherwise the rotation is clockwise instead of counter clockwise (this one was fun to figure -...

`ceilToDouble` and `floorToDouble` will not work with fractional pixel ratio. You will still get blur with 150% scaling for example. Also with Flex snapping layout gets more complicated, because if...

Out of curiosity, how large is the text layout? Does it cover visible area, or entire document?

I might be a bit confused with terminology. What exactly is a page? Text layouts usually works with documents and paragraphs. My question is, whether the entire document is laid...

Seems like a duplicate of https://github.com/flutter/flutter/issues/23603? Can this be closed?