Shawn

Results 48 issues of Shawn

This may not be actionable but logging this just so we can track it and potentially chat about workarounds. # Issue When animations are delayed they force flutter to re-render...

It would be nice to be able to tween the actual size of things, probably using `SizedBox` and `FractionallySizedBox` internally: ``` Button().animate().width(begin: 40, end: 200); Button().animate().size(begin: Offset.zero, end: Offset(50, 100);...

In some cases you want a group of tweens to share some default duration, curve, or delay. It might be nice if this could be declared in the widget tree:...

# What this does Allows users to more seamlessly use Flutters built in `TweenSequence` API to express complex multi-step tweens. ```dart // fades in, out, and back in foo.animate().tweenSequence( duration:...

Create a new branch and begin migrating to non-null. We can then create child-branches and land those as PR's against the main branch.

P2

https://github.com/gskinnerTeam/flokk/issues/15#issuecomment-661886022

P2

https://github.com/gskinnerTeam/flokk/blob/99d9f3fb771cfc3e32cb329a7ba6233cc7ea8f96/flokk_src/lib/data/contact_data.dart#L231

P2

routing._prevPath should not default to the initial value of the controller, it should be null, or something that can never be matched.

When using impeller rendering engine with the "Sparkle Party" vignette many of the particles are squares when they should be sparkles. This vignette uses the `ImageShader` and `drawVertices` method backed...

Some of the widget code is quite hard to understant, see GameScore._buildTeamScores for example.