Commit 4789ee36 authored by Hixie's avatar Hixie

BuilderTransition no longer requires variables

Sometimes you want to just make a transition driven straight from the
performance's progress, rather than with an explicit variable.
parent eaab8fa1
...@@ -259,7 +259,7 @@ typedef Widget BuilderFunction(BuildContext context); ...@@ -259,7 +259,7 @@ typedef Widget BuilderFunction(BuildContext context);
class BuilderTransition extends TransitionComponent { class BuilderTransition extends TransitionComponent {
BuilderTransition({ BuilderTransition({
Key key, Key key,
this.variables, this.variables: const <AnimatedValue>[],
this.builder, this.builder,
PerformanceView performance PerformanceView performance
}) : super(key: key, }) : super(key: key,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment