Grant Skinner

Results 147 comments of Grant Skinner
trafficstars

@shtse8 - per this comment: https://github.com/gskinner/flutter_animate/issues/95#issuecomment-1652180362 I'm trying to weigh the added maintenance against the value given that the `reverseCurve` is only applied if you are manually calling `reverse()`, at...

This is because ShaderMask doesn't do a particularly good job with edges, so by default ShimmerEffect adds 0.5px of padding around the widget to avoid visual artifacts. You can disable...

Sorry, I'm not totally clear on which are you asking for? 1. It animates as soon as it is instantiated. 2. It animates when it scrolls into view.

It might be possible to create an `Adapter` that would handle this. I'm not sure that's the best choice, since adapters are intended to control the animation position directly, whereas...

I think you could probably get there with `swap`, but it might be easier to just write a simple widget that mimics the capabilities of AnimatedSwitcher, but lets you use...

As a bit of quick guidance, the widget you swap in with swap completely replaces the prior target and it's Animate instance (well, not exactly, but it's the easiest way...

Might be worth trying to add a key to the Animate instances. There's a decent chance that Flutter is just matching them as the same instance (same type, plus same...

Cool. I'll keep this open to implement in the future. Feel free to remind me. :)

Note to self: `@widgetFactory` released in 3.10.0 on 2023/5/10.

Thoughts on just adding this to `CustomEffect`? I believe it's essentially identical right now, except the addition of the `sequence` param, which could be optional. ``` dart sequence?.evaluate(animation.value) ?? animation.value...