Renan

Results 117 comments of Renan

> This also hides Buttons which are not visible but you can scroll to them and click them. > I guess one would need to adapt whatever is done in...

Since there is no intention for the framework team to fix transformed gesture detectors, here is a tip for anyone facing this problem: try to wrap photo view with a...

Is this still hapening on 0.14.0?

This bug affects which platforms? Do you have a step by step of how to reproduce it? > When the image width is below this value, What do you mean...

Since this is for flutter web, I couldn't have thought much about this. When trying to reproduce it doesn't happen for macOS, android, and iOS. Since it seems to be...

> Any news on this? Didn't have time to look into it yet. Fell free to investigate

Since this is happening only to `AdvancedNetworkImage` provider, I don't think that the problem is caused by the transform (which happens inside SKIA), at least exclusively. Making image scale itself...

@MiaYi Can you please submit that on a different issue? This seems to be a different problem.

> I didn't know about this Notifications API, but coming from the context of the browser and how DOM handles the event propagation, I think it's a very cool solution....

Have you tried to use a custom s[cale state cycle](https://pub.dev/documentation/photo_view/latest/photo_view/ScaleStateCycle.html)? ```dart PhotoViewScaleState myScaleStateCycle(PhotoViewScaleState actual) { switch (actual) { case PhotoViewScaleState.zoomedIn: case PhotoViewScaleState.zoomedOut: case PhotoViewScaleState.covering: return PhotoViewScaleState.initial case PhotoViewScaleState.initial: case PhotoViewScaleState.originalSize:...