Commit 67b2ee3a authored by Adam Barth's avatar Adam Barth

Merge pull request #477 from abarth/reprojection

Reduce paint time for Stocks drawer animation by 88%
parents ec5b1c1a 95eb6685
...@@ -202,7 +202,9 @@ class _DrawerControllerState extends State<_DrawerController> { ...@@ -202,7 +202,9 @@ class _DrawerControllerState extends State<_DrawerController> {
widthFactor: _performance.progress, widthFactor: _performance.progress,
child: new SizeObserver( child: new SizeObserver(
onSizeChanged: _handleSizeChanged, onSizeChanged: _handleSizeChanged,
child: config.child child: new ForcedLayer(
child: config.child
)
) )
) )
) )
......
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