Unverified Commit 2962912d authored by Jim Graham's avatar Jim Graham Committed by GitHub

restore imagefiltered_transform_animation_perf__timeline_summary benchmark (#60415)

parent 06d0cd51
...@@ -137,6 +137,13 @@ class HomePage extends StatelessWidget { ...@@ -137,6 +137,13 @@ class HomePage extends StatelessWidget {
Navigator.pushNamed(context, kFadingChildAnimationRouteName); Navigator.pushNamed(context, kFadingChildAnimationRouteName);
}, },
), ),
RaisedButton(
key: const Key(kImageFilteredTransformAnimationRouteName),
child: const Text('ImageFiltered Transform Animation'),
onPressed: () {
Navigator.pushNamed(context, kImageFilteredTransformAnimationRouteName);
},
),
RaisedButton( RaisedButton(
key: const Key(kMultiWidgetConstructionRouteName), key: const Key(kMultiWidgetConstructionRouteName),
child: const Text('Widget Construction and Destruction'), child: const Text('Widget Construction and Destruction'),
......
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